Functions and Graphs. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996.

Size: px
Start display at page:

Download "Functions and Graphs. The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996."

Transcription

1 Functions and Graphs The METRIC Project, Imperial College. Imperial College of Science Technology and Medicine, 1996.

2 Launch Mathematica. Type <<Mathetic`fngpack` Instructions for getting started Hold down the shift key and press the return key. Wait for Mathematica s response. Be sure to use the ` symbol rather than the ' : you may need to hunt for it on your keyboard. This essential first step sets up Mathematica for this module. If you omit this bit, the special commands (see below) will not work. Mathematica commands The following Mathematica commands are used in this module. Commands that come with Mathematica: Sin, Cos, Tan, Sqrt, Abs, Exp, Plot, ListPlot, Fit Special commands for this module only: GiveQuestion, LastAnswer To find out more about a Mathematica command, e.g. Plot, type?plot then shift-return.

3 Introduction Definitions Functions are a very important idea in mathematics. A function is a rule that takes one object and converts it to another. The object going in may be a number, a variable or a coordinate pair (or triple in three dimensions). The important thing is that, for any given input, there is only one output. The set of all possible objects, or arguments, for which a function s behaviour is defined is called the function s domain. The corresponding set of values which the function yields is called its range. Graphs are pictures of functions made by plotting the input against the output using a coordinate system: most familiar is the Cartesian (x, y) system. Notation There are several different notations for functions. For example, the function that takes a number, squares it, takes its sine and multiplies the square and the sine together can be written: Mathematica issues Functions y = x 2 sin x, or y(x) = x 2 sin x, or f (x) = x 2 sin x, or f : x x 2 sin x. Mathematica uses square brackets to enclose function inputs, where we might usually use round ones. For example: Sin[Pi] Exp[2] Mathematica has many functions built in, and you can easily define your own functions in Mathematica as we ll see shortly. Graphs Computer-generated graphs in Mathematica are built by making a table of x and y coordinate pairs across a range of x. Mathematica chooses the y ranges on graphs so that it shows the most interesting part of the graph corresponding to the x-range you chose. You can force it to use a certain y-range if you use an option, like this: Plot[x^2, {x, -7, 7}, PlotRange -> {-5, 25}]

4 Experiment 1: Functions Preparatory reading Mathematica has all the common functions built in, and some fairly uncommon ones too. You may have seen some of them in the Getting Started module. In this experiment you will be creating your own functions in Mathematica. 1) In the Getting Started module you ve seen and used some of Mathematica s built-in functions, for example: Sin, Abs, Exp. You should have an idea about what a function is, but look at the Introduction to make sure. Try out some Mathematica functions, for these and other inputs: Sin[Pi] Exp[1] Abs[-3] Cos[1.5] Log[10] 2) Mathematica s syntax for defining a new function is like this: square[n_] := n * n press shift-return to define it Note the use of the underscore character ( shift - on the keyboard), _, and ':=' rather than just '='. These are explained in the Post-experiment Reading for this Experiment. 3) Try the new function out: square[4] square[w] square[w + 3] Try the last two examples again after you ve assigned a value to w: w = 4 4) Function definitions may involve other variables, e.g.: quadratic[x_] := a x^2 + b x + c This is the general quadratic. Try using it before you assign values to a, b and c, then try it again after making the assignments: a=4; b=10; c=8; The semicolons here allow you to put several commands together into the same input line. They also have the effect of suppressing the output from any command. 5) Some functions are even, that is f ( x) = f ( x), and some functions are odd, f (x) = f ( x), and some are neither. Find two Mathematica functions that are even, two that are odd, and two that are neither. 6) Find the sets of values of a, b, and c that make the quadratic function even; and the sets of values that make it odd. Make a note of your answer.

5 Post-experiment reading Function definitions use two pieces of Mathematica syntax that you haven t seen before. The underscore character ( shift - on the keyboard), as in n_, used on the left-hand side of definitions means that the symbol n is a placeholder. This means that the function will work on whatever gets put in the square brackets: if you leave out the underscore, the function is only defined for the input n. Note that the n here is a local symbol, there s no danger of conflict with any use of the symbol n elsewhere. The difference between ':=' and '=' is slightly complicated. For the time being, we ll use the former for function definitions (like square[n_] := n * n) and the latter for ordinary assignments (like x = 5). The general quadratic function has two even terms (the x 2 term and the constant), and one odd one (the x term). To make the general quadratic into an even or odd function the offending terms have to be eliminated, by setting b = 0 for evenness, and a = c = 0 for oddness. The term symmetric function is sometimes used instead of even function, and anti-symmetric function instead of odd function. It is useful to keep in mind that even powers of a variable are even whilst odd powers are odd! Experiment 2: Composing functions Preparatory reading Composing means applying one function after another. In traditional notation, there is a possible confusion about the order of application when applying functions one after the other: g(x) fg(x) = f (g(x)) means "apply function g to x". means "apply function f to g(x)". The function fg (sometimes written f g or f o g ) is called the composite of f and g. Notice that fg means apply the function g first, then apply f to the output. It is easy to get confused, because the function to be applied last is written first. 1) Define the general quadratic function: Clear[a, b, c] quadratic[x_] := a x^2 + b x + c 2) Compare these two commands: quadratic[sin[t]] Sin[quadratic[t]] Which of the functions has been applied first in each case? 3) Write functions to: (i) square an input; (ii) multiply an input by 3; (iii) multiply by 7;

6 (iv) add 5; (v) divide by 3. For example, the function for (ii) might look like this: times3[num_] := num * 3 Use sensible names! And remember to do shift-return to install each definition. 4) Using these functions, and others, with different numbers or variables as inputs, write a short discussion of the question: When does the order of applying functions make a difference, and when does it definitely not? 5) For some of the functions defined above there is an obvious inverse: a function that takes us back to where we started. You should already be able to type something like: times3[divide3[z]] and get z back as the output. Find the inverses, wherever they exist, of all the functions in part 3. 6) Think about this expression, which looks like it should work: Sqrt[square[-3]] Explain why the inverses of functions like sin x and x 2 need special treatment. 7) Can you find, or define, any functions that are self-inverting, so that: fun[fun[anynum]] outputs just anynum? Post-experiment reading Inverse functions can be problematic, because of our insistence that a function must only have one output. But, for example, there are two numbers whose squares are 9, namely 3 and 3. The inverse square of 9, then, is not uniquely defined. The solution to this problem is to define a limited inverse, which we usually call square root, that leads only to the positive one. The sine function is even worse. For example, the equation sin x = 0.5 has an infinite number of solutions and the convention is to choose the value that lies between - /2 and /2. With this restriction, the inverse of the sine function is written: arcsin x, or sin 1 x. The other inverse trigonometric functions are written similarly. These functions are discussed more fully in the Trigonometry module. Note that the sin 1 x notation is extremely ambiguous: it does not mean (sin x) 1 = 1/sin x, it simply means the angle whose sine is x. Inverses For simpler functions there is a way to find the inverse, based on trying to solve (or rearrange) the function definition to get x in terms of y. For example:

7 y = 4x + 2 y 2 = 4x y 2 4 = x. We can now write down the inverse function, switching the roles of x and y: y = x 2 4. It s a convention that x be the independent (input) variable and y the dependent (output) variable. There are some trivial self-inverting functions like add zero or multiply by 1. The reciprocal function, y = 1/x, is a simple, non-trivial one. There are others. Experiment 3: Graphing functions Preparatory reading A graph is just a picture of a function. Mathematically the graph of a function f is the (infinite) set of points (x, y) such that y = f(x). When we draw graphs we usually choose some values of x, calculate f(x) and plot each of the points (x, y) until there are enough to be able to draw a curve through the points. Mathematica has a similar approach, and like us it knows to fill in more points at places where the function is changing rapidly. In x y graphs there is an implicit distinction between the two axes. The x-axis is usually used for the independent variable (independent in the sense that we can usually choose any number to put into the function). The y-axis represents the dependent variable (that is, dependent on x). 1) A powerful way to represent functions is by their graphs. Try this example of Mathematica s graph plotting command: Plot[x^2, {x, -4, 4}] This is the graph we usually call y = x 2, with y plotted vertically and x horizontally. 2) The Plot command gives Mathematica s best attempt at joining points together and putting on a pair of axes. Try this: Plot[1/(x-2), {x, 3, 5}] Repeat this plot with some different values for the range of x (i.e. the 3 and the 5 ) and write a note about how Mathematica seems to decide on the appearance of the axes. 3) There are many ways to modify the appearance of a plot. If a graph doesn t include the origin (0, 0) within its plotting ranges then Mathematica will normally make the axes cross at some other convenient point. You can insist on a certain crossing point (origin) for the axes by applying an option: Plot[1/(x-2), {x, 3, 5}, AxesOrigin->{0,0}] That looks a bit strange, but try this:

8 Plot[1/(x-2), {x,3, 5}], AxesOrigin->{0,0}, PlotRange->{{-1,5}, {-1,1}}] Plot has many other options, including ones for labelling axes, putting a title over a graph, and controlling the tick points along the axes. The options are very useful and you should get familiar with them. 4) Plot is a general-purpose plotting tool which sometimes goes wrong. Consider: Plot[1/(x-2), {x,-5,5}] This function has an asymptote at x = 2: its value is when approaching x = 2 from below, and + when approaching from above. But Plot doesn t know this and plods on, joining up a large negative value for x just less than 2 to a large positive value for x just bigger than 2. Don t be fooled: the computer s graph is wrong, and that joining line should not be there! 5) Plot will be fooled by each of the following functions. Try plotting them, and write a note identifying how and why each plot has gone wrong: (i) tan x (ii) x + 4 x 2 1 (iii) sin 1 x. 6) If you know a function and its inverse function, what can you say about their graphs? Here s an example function and its inverse: f[x_]:=5 x + 3; invf[x_]:=(x - 3) / 5 You can plot two graphs on the same set of axes by doing: Plot[{f[x], invf[x]}, {x,-5,5}, PlotRange->{-5,5}, AspectRatio->Automatic] The extra options here make the scales on both axes the same. This helps us to spot the general graphical relationship between a function and its inverse (there may be a clue in that). Try plotting some other function-and-inverse pairs, to determine and confirm what you believe the relationship is. What do the graphs of self-inverting functions have in common? Post-experiment reading The Plot command, though very useful and important, has a major flaw: it always assumes that the functions it is plotting are continuous. So when an input function isn t continuous, such as 1/(x - 2) (discontinuous at x = 2), or tan x (discontinuous at x = ± /2, ±3 /2, ), or sin(1/x) (discontinuous at x = 0) then spurious lines connecting large positive and large negative function values will appear. The failure in the case of sin(1/x) is even more drastic because the period of the function goes to zero at x = 0. The moral of this story is: always think twice about computer output! The graphs of a function and its inverse function are simply reflections of each other in the line y = x. Self-inverse functions are symmetrical about this line. Experiment 4: Graphing data Preparatory reading We can use the coordinate system of a graph to represent sets of pairs of numbers, with or without knowing a function that links them. A typical example would be the results of an experiment where,

9 say, the temperature T of a system is measured at different times t, leading to a set of coordinate pairs (t, T). We ve ordered them in this way because we tend to put the independent variable on the horizontal axis, and with this experimental data it seems natural to treat time as the independent variable. We don t know if there s a functional relationship between the two measurements. Graphing the data is part of our attempt to find out. The simplest case to look for is a linear relationship: we try and fit a straight line through the points. All straight lines have an equation like this: y = mx + c, where m is the gradient of the line (= tan θ), and c is the intercept on the y-axis. y θ c 0 x Here are the results of an experiment in which the temperature T of a system was measured at 1 minute intervals of the time t: t (mins) T ( C) ) We can store data of this sort in a Mathematica list. To enter it, type: data = {{1,45},{2,51},{3,54.5},{4,62},{5,64}, {6,70},{8,78}} We ve assigned the name data to this list. 2) Now let s plot these results, storing the graph under the name datagraph for later use: datagraph=listplot[data] We don t know the function underlying this graph. Can we use these points, which are subject to experimental errors, to find a functional relationship between T and t? 3) The simplest function to try and fit is a straight line. The following commands define a first guess for the slope and gradient of the straight line, and plot the line and data together on the same axes: m=4; c= 45; fitline = Plot[m * x + c, {x, 1, 8}] Show[{dataGraph, fitline}] 4) Adjust the values of m and c to get the best values.

10 Write a short report saying what we mean by best. Compare your results with friends and with Mathematica s own best-fit function: Fit[data, {1,x}, x] The {1,x} term here specifies that a straight line fit is required. You can try other powers of x, or different kinds of functions. Post-experiment reading Fit works by choosing the curve that minimises the (vertical) distances of the data points from that curve. It performs a least squares fit: it minimises the sum of the squares of the distances from the data points to the curve (a straight line in this case): Experiment 5: Functions from graphs Preparatory reading This final Experiment is intended to help you see the relationships between common functions and their graphs. Spotting the function behind a graph is detective work, with clues like: Symmetry: in either axis, symmetric or anti-symmetric or neither Periodicity: trigonometric functions like sin x repeat every 2 radians Zeroes: what are the y values when x = 0, and x values when y = 0? Infinity: what happens as x goes towards ±? Infinite y can originate from division by zero at some value of x, or asymptotes of functions like tan x. from We ve set up a set of mystery plots, numbered from 1 to 11. To view the first, type: mysteryplot1

11 and so on. For each, identify the function that s been plotted (use trial and error if you like). Write a short report summarising the symmetry and periodicity characteristics of each function, and noting the positions of any zeroes and asymptotes. Practice Questions There are several sets of practice questions which present you with graphs that you should try to identify. Look at each graph, check it against your report from the last Experiment, and try to plot it for yourself in Mathematica. The first set of questions concerns graphs of powers of x between -2 and 4. Type: GiveQuestion["powers graphs"] for a question, and: LastAnswer["powers graphs"] to check your answer. You can do this as often as you want: the questions are randomly generated, and repetitions should be rare. For questions on trigonometric functions, type: GiveQuestion["trig graphs"] and to check your answer: LastAnswer["trig graphs"] Finally, for questions concerning a wider range of functions, use: GiveQuestion["graphs"] This section uses this module s special commands. If they fail to work try going back to the Instruction for Getting Started at the beginning.

Graphing Trig Functions - Sine & Cosine

Graphing Trig Functions - Sine & Cosine Graphing Trig Functions - Sine & Cosine Up to this point, we have learned how the trigonometric ratios have been defined in right triangles using SOHCAHTOA as a memory aid. We then used that information

More information

Walt Whitman High School SUMMER REVIEW PACKET. For students entering AP CALCULUS BC

Walt Whitman High School SUMMER REVIEW PACKET. For students entering AP CALCULUS BC Walt Whitman High School SUMMER REVIEW PACKET For students entering AP CALCULUS BC Name: 1. This packet is to be handed in to your Calculus teacher on the first day of the school year.. All work must be

More information

AP Calculus Summer Review Packet

AP Calculus Summer Review Packet AP Calculus Summer Review Packet Name: Date began: Completed: **A Formula Sheet has been stapled to the back for your convenience!** Email anytime with questions: danna.seigle@henry.k1.ga.us Complex Fractions

More information

Basics of Computational Geometry

Basics of Computational Geometry Basics of Computational Geometry Nadeem Mohsin October 12, 2013 1 Contents This handout covers the basic concepts of computational geometry. Rather than exhaustively covering all the algorithms, it deals

More information

SNAP Centre Workshop. Introduction to Trigonometry

SNAP Centre Workshop. Introduction to Trigonometry SNAP Centre Workshop Introduction to Trigonometry 62 Right Triangle Review A right triangle is any triangle that contains a 90 degree angle. There are six pieces of information we can know about a given

More information

A function: A mathematical relationship between two variables (x and y), where every input value (usually x) has one output value (usually y)

A function: A mathematical relationship between two variables (x and y), where every input value (usually x) has one output value (usually y) SESSION 9: FUNCTIONS KEY CONCEPTS: Definitions & Terminology Graphs of Functions - Straight line - Parabola - Hyperbola - Exponential Sketching graphs Finding Equations Combinations of graphs TERMINOLOGY

More information

3. parallel: (b) and (c); perpendicular (a) and (b), (a) and (c)

3. parallel: (b) and (c); perpendicular (a) and (b), (a) and (c) SECTION 1.1 1. Plot the points (0, 4), ( 2, 3), (1.5, 1), and ( 3, 0.5) in the Cartesian plane. 2. Simplify the expression 13 7 2. 3. Use the 3 lines whose equations are given. Which are parallel? Which

More information

Math Analysis Chapter 1 Notes: Functions and Graphs

Math Analysis Chapter 1 Notes: Functions and Graphs Math Analysis Chapter 1 Notes: Functions and Graphs Day 6: Section 1-1 Graphs Points and Ordered Pairs The Rectangular Coordinate System (aka: The Cartesian coordinate system) Practice: Label each on the

More information

AP Calculus AB. Table of Contents. Slide 1 / 180. Slide 2 / 180. Slide 3 / 180. Review Unit

AP Calculus AB. Table of Contents. Slide 1 / 180. Slide 2 / 180. Slide 3 / 180. Review Unit Slide 1 / 180 Slide 2 / 180 P alculus Review Unit 2015-10-20 www.njctl.org Table of ontents lick on the topic to go to that section Slide 3 / 180 Slopes Equations of Lines Functions Graphing Functions

More information

Green Globs And Graphing Equations

Green Globs And Graphing Equations Green Globs And Graphing Equations Green Globs and Graphing Equations has four parts to it which serve as a tool, a review or testing device, and two games. The menu choices are: Equation Plotter which

More information

Trigonometric Functions. Copyright Cengage Learning. All rights reserved.

Trigonometric Functions. Copyright Cengage Learning. All rights reserved. 4 Trigonometric Functions Copyright Cengage Learning. All rights reserved. 4.7 Inverse Trigonometric Functions Copyright Cengage Learning. All rights reserved. What You Should Learn Evaluate and graph

More information

MEI Desmos Tasks for AS Pure

MEI Desmos Tasks for AS Pure Task 1: Coordinate Geometry Intersection of a line and a curve 1. Add a quadratic curve, e.g. y = x² 4x + 1 2. Add a line, e.g. y = x 3 3. Select the points of intersection of the line and the curve. What

More information

AP Calculus AB. Table of Contents. Slide 1 / 180. Slide 2 / 180. Slide 3 / 180. Review Unit

AP Calculus AB. Table of Contents. Slide 1 / 180. Slide 2 / 180. Slide 3 / 180. Review Unit Slide 1 / 180 Slide 2 / 180 P alculus Review Unit 2015-10-20 www.njctl.org Table of ontents lick on the topic to go to that section Slide 3 / 180 Slopes Equations of Lines Functions Graphing Functions

More information

Mastery. PRECALCULUS Student Learning Targets

Mastery. PRECALCULUS Student Learning Targets PRECALCULUS Student Learning Targets Big Idea: Sequences and Series 1. I can describe a sequence as a function where the domain is the set of natural numbers. Connections (Pictures, Vocabulary, Definitions,

More information

Math Analysis Chapter 1 Notes: Functions and Graphs

Math Analysis Chapter 1 Notes: Functions and Graphs Math Analysis Chapter 1 Notes: Functions and Graphs Day 6: Section 1-1 Graphs; Section 1- Basics of Functions and Their Graphs Points and Ordered Pairs The Rectangular Coordinate System (aka: The Cartesian

More information

MEI GeoGebra Tasks for AS Pure

MEI GeoGebra Tasks for AS Pure Task 1: Coordinate Geometry Intersection of a line and a curve 1. Add a quadratic curve, e.g. y = x 2 4x + 1 2. Add a line, e.g. y = x 3 3. Use the Intersect tool to find the points of intersection of

More information

1.1 Pearson Modeling and Equation Solving

1.1 Pearson Modeling and Equation Solving Date:. Pearson Modeling and Equation Solving Syllabus Objective:. The student will solve problems using the algebra of functions. Modeling a Function: Numerical (data table) Algebraic (equation) Graphical

More information

Chapter 1. Math review. 1.1 Some sets

Chapter 1. Math review. 1.1 Some sets Chapter 1 Math review This book assumes that you understood precalculus when you took it. So you used to know how to do things like factoring polynomials, solving high school geometry problems, using trigonometric

More information

2D and 3D Transformations AUI Course Denbigh Starkey

2D and 3D Transformations AUI Course Denbigh Starkey 2D and 3D Transformations AUI Course Denbigh Starkey. Introduction 2 2. 2D transformations using Cartesian coordinates 3 2. Translation 3 2.2 Rotation 4 2.3 Scaling 6 3. Introduction to homogeneous coordinates

More information

MTH 120 Fall 2007 Essex County College Division of Mathematics Handout Version 6 1 October 3, 2007

MTH 120 Fall 2007 Essex County College Division of Mathematics Handout Version 6 1 October 3, 2007 MTH 10 Fall 007 Essex County College Division of Mathematics Handout Version 6 1 October, 007 1 Inverse Functions This section is a simple review of inverses as presented in MTH-119. Definition: A function

More information

Pre-Calculus Mr. Davis

Pre-Calculus Mr. Davis Pre-Calculus 2016-2017 Mr. Davis How to use a Graphing Calculator Applications: 1. Graphing functions 2. Analyzing a function 3. Finding zeroes (or roots) 4. Regression analysis programs 5. Storing values

More information

Pure Math 30: Explained!

Pure Math 30: Explained! www.puremath30.com 30 part i: stretches about other lines Stretches about other lines: Stretches about lines other than the x & y axis are frequently required. Example 1: Stretch the graph horizontally

More information

MEI GeoGebra Tasks for A2 Core

MEI GeoGebra Tasks for A2 Core Task 1: Functions The Modulus Function 1. Plot the graph of y = x : use y = x or y = abs(x) 2. Plot the graph of y = ax+b : use y = ax + b or y = abs(ax+b) If prompted click Create Sliders. What combination

More information

Welcome. Please Sign-In

Welcome. Please Sign-In Welcome Please Sign-In Day 1 Session 1 Self-Evaluation Topics to be covered: Equations Systems of Equations Solving Inequalities Absolute Value Equations Equations Equations An equation says two things

More information

2 Unit Bridging Course Day 2 Linear functions I: Gradients

2 Unit Bridging Course Day 2 Linear functions I: Gradients 1 / 33 2 Unit Bridging Course Day 2 Linear functions I: Gradients Clinton Boys 2 / 33 Linear functions Linear functions are a particularly simple and special type of functions. They are widely used in

More information

Algebra II. Slide 1 / 162. Slide 2 / 162. Slide 3 / 162. Trigonometric Functions. Trig Functions

Algebra II. Slide 1 / 162. Slide 2 / 162. Slide 3 / 162. Trigonometric Functions. Trig Functions Slide 1 / 162 Algebra II Slide 2 / 162 Trigonometric Functions 2015-12-17 www.njctl.org Trig Functions click on the topic to go to that section Slide 3 / 162 Radians & Degrees & Co-terminal angles Arc

More information

Limits. f(x) and lim. g(x) g(x)

Limits. f(x) and lim. g(x) g(x) Limits Limit Laws Suppose c is constant, n is a positive integer, and f() and g() both eist. Then,. [f() + g()] = f() + g() 2. [f() g()] = f() g() [ ] 3. [c f()] = c f() [ ] [ ] 4. [f() g()] = f() g()

More information

We begin this section with a question. What do the roots of a polynomial have to do with its graph?

We begin this section with a question. What do the roots of a polynomial have to do with its graph? Section I: Polynomials Chapter 5 Graphing We begin this section with a question. What do the roots of a polynomial have to do with its graph? The graph package on the TI-85 is accessed via GRAPH from the

More information

College Pre Calculus A Period. Weekly Review Sheet # 1 Assigned: Monday, 9/9/2013 Due: Friday, 9/13/2013

College Pre Calculus A Period. Weekly Review Sheet # 1 Assigned: Monday, 9/9/2013 Due: Friday, 9/13/2013 College Pre Calculus A Name Period Weekly Review Sheet # 1 Assigned: Monday, 9/9/013 Due: Friday, 9/13/013 YOU MUST SHOW ALL WORK FOR EVERY QUESTION IN THE BOX BELOW AND THEN RECORD YOUR ANSWERS ON THE

More information

Important!!! First homework is due on Monday, September 26 at 8:00 am.

Important!!! First homework is due on Monday, September 26 at 8:00 am. Important!!! First homework is due on Monday, September 26 at 8:00 am. You can solve and submit the homework on line using webwork: http://webwork.dartmouth.edu/webwork2/m3cod/. If you do not have a user

More information

Section 1.5 Transformation of Functions

Section 1.5 Transformation of Functions 6 Chapter 1 Section 1.5 Transformation of Functions Often when given a problem, we try to model the scenario using mathematics in the form of words, tables, graphs and equations in order to explain or

More information

MATH STUDENT BOOK. 12th Grade Unit 4

MATH STUDENT BOOK. 12th Grade Unit 4 MATH STUDENT BOOK th Grade Unit Unit GRAPHING AND INVERSE FUNCTIONS MATH 0 GRAPHING AND INVERSE FUNCTIONS INTRODUCTION. GRAPHING 5 GRAPHING AND AMPLITUDE 5 PERIOD AND FREQUENCY VERTICAL AND HORIZONTAL

More information

Section 6.2 Graphs of the Other Trig Functions

Section 6.2 Graphs of the Other Trig Functions Section 62 Graphs of the Other Trig Functions 369 Section 62 Graphs of the Other Trig Functions In this section, we will explore the graphs of the other four trigonometric functions We ll begin with the

More information

Albertson AP Calculus AB AP CALCULUS AB SUMMER PACKET DUE DATE: The beginning of class on the last class day of the first week of school.

Albertson AP Calculus AB AP CALCULUS AB SUMMER PACKET DUE DATE: The beginning of class on the last class day of the first week of school. Albertson AP Calculus AB Name AP CALCULUS AB SUMMER PACKET 2017 DUE DATE: The beginning of class on the last class day of the first week of school. This assignment is to be done at you leisure during the

More information

PARAMETRIC EQUATIONS AND POLAR COORDINATES

PARAMETRIC EQUATIONS AND POLAR COORDINATES 10 PARAMETRIC EQUATIONS AND POLAR COORDINATES PARAMETRIC EQUATIONS & POLAR COORDINATES A coordinate system represents a point in the plane by an ordered pair of numbers called coordinates. PARAMETRIC EQUATIONS

More information

CLEP Pre-Calculus. Section 1: Time 30 Minutes 50 Questions. 1. According to the tables for f(x) and g(x) below, what is the value of [f + g]( 1)?

CLEP Pre-Calculus. Section 1: Time 30 Minutes 50 Questions. 1. According to the tables for f(x) and g(x) below, what is the value of [f + g]( 1)? CLEP Pre-Calculus Section : Time 0 Minutes 50 Questions For each question below, choose the best answer from the choices given. An online graphing calculator (non-cas) is allowed to be used for this section..

More information

Math 3 Coordinate Geometry Part 2 Graphing Solutions

Math 3 Coordinate Geometry Part 2 Graphing Solutions Math 3 Coordinate Geometry Part 2 Graphing Solutions 1 SOLVING SYSTEMS OF EQUATIONS GRAPHICALLY The solution of two linear equations is the point where the two lines intersect. For example, in the graph

More information

1 Review of Functions Symmetry of Functions; Even and Odd Combinations of Functions... 42

1 Review of Functions Symmetry of Functions; Even and Odd Combinations of Functions... 42 Contents 0.1 Basic Facts...................................... 8 0.2 Factoring Formulas.................................. 9 1 Review of Functions 15 1.1 Functions.......................................

More information

Chapter 7. Exercise 7A. dy dx = 30x(x2 3) 2 = 15(2x(x 2 3) 2 ) ( (x 2 3) 3 ) y = 15

Chapter 7. Exercise 7A. dy dx = 30x(x2 3) 2 = 15(2x(x 2 3) 2 ) ( (x 2 3) 3 ) y = 15 Chapter 7 Exercise 7A. I will use the intelligent guess method for this question, but my preference is for the rearranging method, so I will use that for most of the questions where one of these approaches

More information

Specific Objectives Students will understand that that the family of equation corresponds with the shape of the graph. Students will be able to create a graph of an equation by plotting points. In lesson

More information

Calculus I Review Handout 1.3 Introduction to Calculus - Limits. by Kevin M. Chevalier

Calculus I Review Handout 1.3 Introduction to Calculus - Limits. by Kevin M. Chevalier Calculus I Review Handout 1.3 Introduction to Calculus - Limits by Kevin M. Chevalier We are now going to dive into Calculus I as we take a look at the it process. While precalculus covered more static

More information

1.7 Limit of a Function

1.7 Limit of a Function 1.7 Limit of a Function We will discuss the following in this section: 1. Limit Notation 2. Finding a it numerically 3. Right and Left Hand Limits 4. Infinite Limits Consider the following graph Notation:

More information

Birkdale High School - Higher Scheme of Work

Birkdale High School - Higher Scheme of Work Birkdale High School - Higher Scheme of Work Module 1 - Integers and Decimals Understand and order integers (assumed) Use brackets and hierarchy of operations (BODMAS) Add, subtract, multiply and divide

More information

Algebra II Trigonometric Functions

Algebra II Trigonometric Functions Slide 1 / 162 Slide 2 / 162 Algebra II Trigonometric Functions 2015-12-17 www.njctl.org Slide 3 / 162 Trig Functions click on the topic to go to that section Radians & Degrees & Co-terminal angles Arc

More information

Translation of graphs (2) The exponential function and trigonometric function

Translation of graphs (2) The exponential function and trigonometric function Lesson 35 Translation of graphs (2) The exponential function and trigonometric function Learning Outcomes and Assessment Standards Learning Outcome 2: Functions and Algebra Assessment Standard Generate

More information

Section 1.5 Transformation of Functions

Section 1.5 Transformation of Functions Section 1.5 Transformation of Functions 61 Section 1.5 Transformation of Functions Often when given a problem, we try to model the scenario using mathematics in the form of words, tables, graphs and equations

More information

Unit 1: Sections Skill Set

Unit 1: Sections Skill Set MthSc 106 Fall 2011 Calculus of One Variable I : Calculus by Briggs and Cochran Section 1.1: Review of Functions Unit 1: Sections 1.1 3.3 Skill Set Find the domain and range of a function. 14, 17 13, 15,

More information

A lg e b ra II. Trig o n o m e tric F u n c tio

A lg e b ra II. Trig o n o m e tric F u n c tio 1 A lg e b ra II Trig o n o m e tric F u n c tio 2015-12-17 www.njctl.org 2 Trig Functions click on the topic to go to that section Radians & Degrees & Co-terminal angles Arc Length & Area of a Sector

More information

Vocabulary Unit 2-3: Linear Functions & Healthy Lifestyles. Scale model a three dimensional model that is similar to a three dimensional object.

Vocabulary Unit 2-3: Linear Functions & Healthy Lifestyles. Scale model a three dimensional model that is similar to a three dimensional object. Scale a scale is the ratio of any length in a scale drawing to the corresponding actual length. The lengths may be in different units. Scale drawing a drawing that is similar to an actual object or place.

More information

FUNCTIONS AND MODELS

FUNCTIONS AND MODELS 1 FUNCTIONS AND MODELS FUNCTIONS AND MODELS 1.3 New Functions from Old Functions In this section, we will learn: How to obtain new functions from old functions and how to combine pairs of functions. NEW

More information

1. How Mathematica works

1. How Mathematica works Departments of Civil Engineering and Mathematics CE 109: Computing for Engineering Mathematica Session 1: Introduction to the system Mathematica is a piece of software described by its manufacturers as

More information

Mid Term Pre Calc Review

Mid Term Pre Calc Review Mid Term 2015-13 Pre Calc Review I. Quadratic Functions a. Solve by quadratic formula, completing the square, or factoring b. Find the vertex c. Find the axis of symmetry d. Graph the quadratic function

More information

Calculus III. 1 Getting started - the basics

Calculus III. 1 Getting started - the basics Calculus III Spring 2011 Introduction to Maple The purpose of this document is to help you become familiar with some of the tools the Maple software package offers for visualizing curves and surfaces in

More information

Rational functions, like rational numbers, will involve a fraction. We will discuss rational functions in the form:

Rational functions, like rational numbers, will involve a fraction. We will discuss rational functions in the form: Name: Date: Period: Chapter 2: Polynomial and Rational Functions Topic 6: Rational Functions & Their Graphs Rational functions, like rational numbers, will involve a fraction. We will discuss rational

More information

AH Properties of Functions.notebook April 19, 2018

AH Properties of Functions.notebook April 19, 2018 Functions Rational functions are of the form where p(x) and q(x) are polynomials. If you can sketch a function without lifting the pencil off the paper, it is continuous. E.g. y = x 2 If there is a break

More information

Unit 1 and Unit 2 Concept Overview

Unit 1 and Unit 2 Concept Overview Unit 1 and Unit 2 Concept Overview Unit 1 Do you recognize your basic parent functions? Transformations a. Inside Parameters i. Horizontal ii. Shift (do the opposite of what feels right) 1. f(x+h)=left

More information

Foundations of Math II

Foundations of Math II Foundations of Math II Unit 6b: Toolkit Functions Academics High School Mathematics 6.6 Warm Up: Review Graphing Linear, Exponential, and Quadratic Functions 2 6.6 Lesson Handout: Linear, Exponential,

More information

Preview Notes. Systems of Equations. Linear Functions. Let y = y. Solve for x then solve for y

Preview Notes. Systems of Equations. Linear Functions. Let y = y. Solve for x then solve for y Preview Notes Linear Functions A linear function is a straight line that has a slope (m) and a y-intercept (b). Systems of Equations 1. Comparison Method Let y = y x1 y1 x2 y2 Solve for x then solve for

More information

9.1 Linear Inequalities in Two Variables Date: 2. Decide whether to use a solid line or dotted line:

9.1 Linear Inequalities in Two Variables Date: 2. Decide whether to use a solid line or dotted line: 9.1 Linear Inequalities in Two Variables Date: Key Ideas: Example Solve the inequality by graphing 3y 2x 6. steps 1. Rearrange the inequality so it s in mx ± b form. Don t forget to flip the inequality

More information

Graphing Trigonometric Functions: Day 1

Graphing Trigonometric Functions: Day 1 Graphing Trigonometric Functions: Day 1 Pre-Calculus 1. Graph the six parent trigonometric functions.. Apply scale changes to the six parent trigonometric functions. Complete the worksheet Exploration:

More information

MAT 003 Brian Killough s Instructor Notes Saint Leo University

MAT 003 Brian Killough s Instructor Notes Saint Leo University MAT 003 Brian Killough s Instructor Notes Saint Leo University Success in online courses requires self-motivation and discipline. It is anticipated that students will read the textbook and complete sample

More information

MEI Casio Tasks for A2 Core

MEI Casio Tasks for A2 Core Task 1: Functions The Modulus Function The modulus function, abs(x), is found using OPTN > NUMERIC > Abs 2. Add the graph y = x, Y1=Abs(x): iyqfl 3. Add the graph y = ax+b, Y2=Abs(Ax+B): iyqaff+agl 4.

More information

An interesting related problem is Buffon s Needle which was first proposed in the mid-1700 s.

An interesting related problem is Buffon s Needle which was first proposed in the mid-1700 s. Using Monte Carlo to Estimate π using Buffon s Needle Problem An interesting related problem is Buffon s Needle which was first proposed in the mid-1700 s. Here s the problem (in a simplified form). Suppose

More information

Section 7.6 Graphs of the Sine and Cosine Functions

Section 7.6 Graphs of the Sine and Cosine Functions Section 7.6 Graphs of the Sine and Cosine Functions We are going to learn how to graph the sine and cosine functions on the xy-plane. Just like with any other function, it is easy to do by plotting points.

More information

Polar Coordinates. 2, π and ( )

Polar Coordinates. 2, π and ( ) Polar Coordinates Up to this point we ve dealt exclusively with the Cartesian (or Rectangular, or x-y) coordinate system. However, as we will see, this is not always the easiest coordinate system to work

More information

1. The Pythagorean Theorem

1. The Pythagorean Theorem . The Pythagorean Theorem The Pythagorean theorem states that in any right triangle, the sum of the squares of the side lengths is the square of the hypotenuse length. c 2 = a 2 b 2 This theorem can be

More information

Math Precalculus (12H/4H) Review. CHSN Review Project

Math Precalculus (12H/4H) Review. CHSN Review Project Math Precalculus (12H/4H) Review CHSN Review Project Contents Functions 3 Polar and Complex Numbers 9 Sequences and Series 15 This review guide was written by Dara Adib. Prateek Pratel checked the Polar

More information

8.6 Other Trigonometric Functions

8.6 Other Trigonometric Functions 8.6 Other Trigonometric Functions I have already discussed all the trigonometric functions and their relationship to the sine and cosine functions and the x and y coordinates on the unit circle, but let

More information

DOWNLOAD PDF BIG IDEAS MATH VERTICAL SHRINK OF A PARABOLA

DOWNLOAD PDF BIG IDEAS MATH VERTICAL SHRINK OF A PARABOLA Chapter 1 : BioMath: Transformation of Graphs Use the results in part (a) to identify the vertex of the parabola. c. Find a vertical line on your graph paper so that when you fold the paper, the left portion

More information

GSE Algebra 1 Name Date Block. Unit 3b Remediation Ticket

GSE Algebra 1 Name Date Block. Unit 3b Remediation Ticket Unit 3b Remediation Ticket Question: Which function increases faster, f(x) or g(x)? f(x) = 5x + 8; two points from g(x): (-2, 4) and (3, 10) Answer: In order to compare the rate of change (roc), you must

More information

College Algebra. Gregg Waterman Oregon Institute of Technology

College Algebra. Gregg Waterman Oregon Institute of Technology College Algebra Gregg Waterman Oregon Institute of Technology c 2016 Gregg Waterman This work is licensed under the Creative Commons Attribution.0 International license. The essence of the license is that

More information

More Ways to Solve & Graph Quadratics The Square Root Property If x 2 = a and a R, then x = ± a

More Ways to Solve & Graph Quadratics The Square Root Property If x 2 = a and a R, then x = ± a More Ways to Solve & Graph Quadratics The Square Root Property If x 2 = a and a R, then x = ± a Example: Solve using the square root property. a) x 2 144 = 0 b) x 2 + 144 = 0 c) (x + 1) 2 = 12 Completing

More information

Applied Calculus. Lab 1: An Introduction to R

Applied Calculus. Lab 1: An Introduction to R 1 Math 131/135/194, Fall 2004 Applied Calculus Profs. Kaplan & Flath Macalester College Lab 1: An Introduction to R Goal of this lab To begin to see how to use R. What is R? R is a computer package for

More information

2.1 Transforming Linear Functions

2.1 Transforming Linear Functions 2.1 Transforming Linear Functions Before we begin looking at transforming linear functions, let s take a moment to review how to graph linear equations using slope intercept form. This will help us because

More information

Section 10.1 Polar Coordinates

Section 10.1 Polar Coordinates Section 10.1 Polar Coordinates Up until now, we have always graphed using the rectangular coordinate system (also called the Cartesian coordinate system). In this section we will learn about another system,

More information

Not for reproduction

Not for reproduction x=a GRAPHING CALCULATORS AND COMPUTERS (a, d ) y=d (b, d ) (a, c ) y=c (b, c) (a) _, by _, 4 x=b FIGURE 1 The viewing rectangle a, b by c, d _4 4 In this section we assume that you have access to a graphing

More information

Jim Lambers MAT 169 Fall Semester Lecture 33 Notes

Jim Lambers MAT 169 Fall Semester Lecture 33 Notes Jim Lambers MAT 169 Fall Semester 2009-10 Lecture 33 Notes These notes correspond to Section 9.3 in the text. Polar Coordinates Throughout this course, we have denoted a point in the plane by an ordered

More information

Trigonometric ratios provide relationships between the sides and angles of a right angle triangle. The three most commonly used ratios are:

Trigonometric ratios provide relationships between the sides and angles of a right angle triangle. The three most commonly used ratios are: TRIGONOMETRY TRIGONOMETRIC RATIOS If one of the angles of a triangle is 90º (a right angle), the triangle is called a right angled triangle. We indicate the 90º (right) angle by placing a box in its corner.)

More information

What is log a a equal to?

What is log a a equal to? How would you differentiate a function like y = sin ax? What is log a a equal to? How do you prove three 3-D points are collinear? What is the general equation of a straight line passing through (a,b)

More information

PreCalculus Summer Assignment

PreCalculus Summer Assignment PreCalculus Summer Assignment Welcome to PreCalculus! We are excited for a fabulous year. Your summer assignment is available digitally on the Lyman website. You are expected to print your own copy. Expectations:

More information

UPCAT Reviewer Booklet

UPCAT Reviewer Booklet UPCAT Reviewer Booklet I. Linear Equations y = y-value at a certain point in the graph x = x-value at a certain point in the graph b = a constant m = the slope of the line Section 1 Mathematics Linear

More information

Math 231E, Lecture 34. Polar Coordinates and Polar Parametric Equations

Math 231E, Lecture 34. Polar Coordinates and Polar Parametric Equations Math 231E, Lecture 34. Polar Coordinates and Polar Parametric Equations 1 Definition of polar coordinates Let us first recall the definition of Cartesian coordinates: to each point in the plane we can

More information

2.4. A LIBRARY OF PARENT FUNCTIONS

2.4. A LIBRARY OF PARENT FUNCTIONS 2.4. A LIBRARY OF PARENT FUNCTIONS 1 What You Should Learn Identify and graph linear and squaring functions. Identify and graph cubic, square root, and reciprocal function. Identify and graph step and

More information

SECTION 1.3: BASIC GRAPHS and SYMMETRY

SECTION 1.3: BASIC GRAPHS and SYMMETRY (Section.3: Basic Graphs and Symmetry).3. SECTION.3: BASIC GRAPHS and SYMMETRY LEARNING OBJECTIVES Know how to graph basic functions. Organize categories of basic graphs and recognize common properties,

More information

Section 4.1: Introduction to Trigonometry

Section 4.1: Introduction to Trigonometry Section 4.1: Introduction to Trigonometry Review of Triangles Recall that the sum of all angles in any triangle is 180. Let s look at what this means for a right triangle: A right angle is an angle which

More information

AP Calculus Summer Review Packet School Year. Name

AP Calculus Summer Review Packet School Year. Name AP Calculus Summer Review Packet 016-017 School Year Name Objectives for AP/CP Calculus Summer Packet 016-017 I. Solving Equations & Inequalities (Problems # 1-6) Using the properties of equality Solving

More information

CCNY Math Review Chapter 2: Functions

CCNY Math Review Chapter 2: Functions CCN Math Review Chapter : Functions Section.1: Functions.1.1: How functions are used.1.: Methods for defining functions.1.3: The graph of a function.1.: Domain and range.1.5: Relations, functions, and

More information

Section 3.7 Notes. Rational Functions. is a rational function. The graph of every rational function is smooth (no sharp corners)

Section 3.7 Notes. Rational Functions. is a rational function. The graph of every rational function is smooth (no sharp corners) Section.7 Notes Rational Functions Introduction Definition A rational function is fraction of two polynomials. For example, f(x) = x x + x 5 Properties of Rational Graphs is a rational function. The graph

More information

Topic. Section 4.1 (3, 4)

Topic. Section 4.1 (3, 4) Topic.. California Standards: 6.0: Students graph a linear equation and compute the x- and y-intercepts (e.g., graph x + 6y = ). They are also able to sketch the region defined by linear inequality (e.g.,

More information

Week 4: Day 1: Unit circle and meaning!

Week 4: Day 1: Unit circle and meaning! Week : Day 1: Unit circle and meaning! SAT QOD (5 min) Mission Questions (10 min) o Should lead right into unit circle and what the heck it means It begins! (0 min) o The unit circle has radius 1. o Fill

More information

Why Use Graphs? Test Grade. Time Sleeping (Hrs) Time Sleeping (Hrs) Test Grade

Why Use Graphs? Test Grade. Time Sleeping (Hrs) Time Sleeping (Hrs) Test Grade Analyzing Graphs Why Use Graphs? It has once been said that a picture is worth a thousand words. This is very true in science. In science we deal with numbers, some times a great many numbers. These numbers,

More information

WARM UP DESCRIBE THE TRANSFORMATION FROM F(X) TO G(X)

WARM UP DESCRIBE THE TRANSFORMATION FROM F(X) TO G(X) WARM UP DESCRIBE THE TRANSFORMATION FROM F(X) TO G(X) 2 5 5 2 2 2 2 WHAT YOU WILL LEARN HOW TO GRAPH THE PARENT FUNCTIONS OF VARIOUS FUNCTIONS. HOW TO IDENTIFY THE KEY FEATURES OF FUNCTIONS. HOW TO TRANSFORM

More information

Definitions Associated w/ Angles Notation Visualization Angle Two rays with a common endpoint ABC

Definitions Associated w/ Angles Notation Visualization Angle Two rays with a common endpoint ABC Preface to Chapter 5 The following are some definitions that I think will help in the acquisition of the material in the first few chapters that we will be studying. I will not go over these in class and

More information

GRAPHING WORKSHOP. A graph of an equation is an illustration of a set of points whose coordinates satisfy the equation.

GRAPHING WORKSHOP. A graph of an equation is an illustration of a set of points whose coordinates satisfy the equation. GRAPHING WORKSHOP A graph of an equation is an illustration of a set of points whose coordinates satisfy the equation. The figure below shows a straight line drawn through the three points (2, 3), (-3,-2),

More information

Unit 2: Function Transformation Chapter 1. Basic Transformations Reflections Inverses

Unit 2: Function Transformation Chapter 1. Basic Transformations Reflections Inverses Unit 2: Function Transformation Chapter 1 Basic Transformations Reflections Inverses Section 1.1: Horizontal and Vertical Transformations A transformation of a function alters the equation and any combination

More information

Quadratic Functions CHAPTER. 1.1 Lots and Projectiles Introduction to Quadratic Functions p. 31

Quadratic Functions CHAPTER. 1.1 Lots and Projectiles Introduction to Quadratic Functions p. 31 CHAPTER Quadratic Functions Arches are used to support the weight of walls and ceilings in buildings. Arches were first used in architecture by the Mesopotamians over 4000 years ago. Later, the Romans

More information

Test # 1 Review. to the line x y 5. y 64x x 3. y ( x 5) 4 x 2. y x2 2 x. Á 3, 4 ˆ 2x 5y 9. x y 2 3 y x 1. Á 6,4ˆ and is perpendicular. x 9. g(t) t 10.

Test # 1 Review. to the line x y 5. y 64x x 3. y ( x 5) 4 x 2. y x2 2 x. Á 3, 4 ˆ 2x 5y 9. x y 2 3 y x 1. Á 6,4ˆ and is perpendicular. x 9. g(t) t 10. Name: Class: Date: ID: A Test # 1 Review Short Answer 1. Find all intercepts: y 64x x 3 2. Find all intercepts: y ( x 5) 4 x 2 3. Test for symmetry with respect to each axis and to the origin. y x2 2 x

More information

You are not expected to transform y = tan(x) or solve problems that involve the tangent function.

You are not expected to transform y = tan(x) or solve problems that involve the tangent function. In this unit, we will develop the graphs for y = sin(x), y = cos(x), and later y = tan(x), and identify the characteristic features of each. Transformations of y = sin(x) and y = cos(x) are performed and

More information

9-1 GCSE Maths. GCSE Mathematics has a Foundation tier (Grades 1 5) and a Higher tier (Grades 4 9).

9-1 GCSE Maths. GCSE Mathematics has a Foundation tier (Grades 1 5) and a Higher tier (Grades 4 9). 9-1 GCSE Maths GCSE Mathematics has a Foundation tier (Grades 1 5) and a Higher tier (Grades 4 9). In each tier, there are three exams taken at the end of Year 11. Any topic may be assessed on each of

More information

Preparing for AS Level Further Mathematics

Preparing for AS Level Further Mathematics Preparing for AS Level Further Mathematics Algebraic skills are incredibly important in the study of further mathematics at AS and A level. You should therefore make sure you are confident with all of

More information