"

Class Notes Precalculus I, 12/08/98

Review I


Solutions to follow . . .

The following review topics include questions that, along with minor variations on some questions,  will be included in the problem bank for the final exam.  Other questions not on this list will also be included, as will all questions from the problem banks for the two tests.

The review will consist of solutions to these questions and problems.

These questions and problems are classified as follows:   The Modeling Process    Equation Solving    Properties of Functions

This document contains outlines of answers for the first section.

The Modeling Process

1. Quadratic models based on 3 points

Given three points on a graph of depth vs. clock time, how do we obtain a quadratic model y = f(t) = a t^2 + b t + c for the associated depth vs. clock time function? How do we use that function to predict the depth for a given clock time, and how do we use the function to predict the clock time in which a given depth will occur?

The first figure below is a schematic of the process of substituting the coordinates of the three points into the general quadratic equation, then substituting the solution into the general form of the equation to obtain a specific model.

The second figure shows how we substitute a known clock time t for the variable x to obtain the depth y at that clock time. Recall how this is depicted graphically by projecting from the x axis to the graph then to the y axis. The second part of this figure shows how we substitute a given depth for y to obtain a quadratic equation which we solve for x. This solution gives us to clock time t = x at which the depth is achieved.

pc01.jpg      pc02.jpg

2. Linear models based on 2 points

Given two data points on a graph of spring length vs. suspended weight, how we obtain a linear model y = f(x) = mx + b for the weight vs. spring length? How do we use this function to predict the spring length for a given weight, or determine the weight from a given spring length?

The first figure below is a schematic of the process of substituting the coordinates of the two points into the general linear equation, then substituting the solution into the general form of the equation to obtain our specific model.

The second figure shows how we translate our y = mx + b model into a model of spring length vs. weight using the variables springLgth and wt. We obtain the equation springLgth = m * wt. + b, which can be used directly to find the spring length given the weight. Or we can solve the equation for the weight, obtaining a form which we can substitute the spring length and directly determine the weight.

pc03.jpg      pc04.jpg

http://youtu.be/X9u2tvjX7Js

3. Linear models based on regression line

Given a set of data points on a graph of flow rate vs. clock time, how we obtain a linear model y = f(x) = mx + b for the flow rate vs. clock time? How do we use this function to predict the flow rate for a clock time, or determine the clock time at which a given flow rate will occur?

pc05.jpg

4. Power-function models

Given a set of (x, y) data points, how can we use DERIVE to determine by trial and error the power function that best models these data points?

The DERIVE syntax for fitting a power function is fit( [x, ax^p], #), where # is the line number and p is a specific number we use for the power function. We could equally well use k x^p rather than a x^p in this syntax; the symbol in front of x^p could be anything but x and the result would be the same.

We can use trial and error with different values of p to find the approximate best value of p, and therefore the best power function to use for the data.

This is not required knowledge, but the command vector ( fit( [x, ax^p], #), p, .5, 3.5, .5) tells DERIVE to perform a power-function fit for the data in the line given by #, using values of p from .5 to 3.5 and changing by .5 each time (i.e., p will be .5, 1, 1.5, 2, 2.5, 3, 3.5). If we approXimate this command, we obtain all 7 of these power functions. If we plot the resulting expression we will get all 7 plots.

pc06.jpg

5. Polynomial Models

Given a set of data points, how can we find a polynomial model that exactly fits the set? How do we determine the appropriateness of the polynomial as a model of the phenomenon represented by the data set?

The figure below shows the syntax for the DERIVE fit of the polynomial model. Instead of the symbols n, n-1, ..., we would use actual powers (e.g., 5, 4, 3, ...). We must have more data points than the highest power or the fit won't work; that is, n must be < the number of data points.

If the degree of the polynomial is one less than the number of data points the polynomial of fit the data points exactly, which means that it will 'wobble' around to accommodate any errors we have made in our observations or which arise from unavoidable uncertainties in our observations. This does not mean that the model is correct; it can reveal little more than our use of 'overkill' with a high-degree polynomial. We are usually more interested in a smooth curve their reveals something about the actual underlying behavior of the system we are observing.

pc07.jpg

http://youtu.be/7blG1Ugr6UA

6. Exponential Models based on 2 points and asymptote

Given two representative points and an estimate of the asymptote of a set of data for which an exponential model is expected (e.g., for the temperature of a cooling object, the population of a freely reproducing organism in a favorable environment, the value of an investment in a stable economy, the activity of a radioactive sample), how do we obtain an exponential model of the form y = A b^x + c or of the form y = A e^(kx) + c for the phenomenon?

The figure below is a schematic of the process. Since an exponential function y = A b^x + c is asymptote to the line y = c (if b < 1, y will approach c as x becomes a large positive number; if b > 1 y will approach c as x becomes a large negative number). So if we observe that y = yf is our asymptote, we will substitute this value for c. We then substitute the x and y values of two data points to obtain to equations in A and b. We solve these equations and substitute A, b and our asymptote c into the form to obtain our model.

The graph of our function will approach the asymptote for either positive or negative values of x. The graphs shown in the second figure below are both for values of b < 1, so that we approach the asymptote for positive values of x. In one graph, as labeled, A is positive well in the other it is negative.

This process also works for the form y = A e^(kx) + c. If after solving we obtain k > 0 our graph will be like that for b > 1, while negative values of k given graph like those we obtain for b < 1. In fact, our solution will be equivalent to y = A b^x + c for b = e^k.

pc08.jpg   pc09.jpg

7. Linearizing data

How do we use inverse functions to linearize a data set? How do we reverse the linearization after obtaining the linear model?

The figures below show us how the original y = A f(x) data set is transformed by taking f^-1(y), using the appropriate f^-1 function (e.g., `sqrt(x) for x^2 data, x^2 for `sqrt(x) data, log x for any b^x or e^(kx) data).

The second figure shows how we then proceed to graph our transformed data, and use an estimate or linear regression to obtain the equation f^-1(y) = mx + b. We solve this equation for y by applying the original function f to both sides. For example, had we transformed our y data using `sqrt(x), we would square both sides to obtain a y = ... solution; had we transformed our y data using a log function we would exponential a both sides to obtain 10 ^ (f^-1(y) ) = 10 ^ (log y) = y on the left and 10^(mx + b) = ... = 10^b * (10^m) ^ x on the right.

We would then compare the results of our y = ... model to our original data by plugging the original x values into the function we have obtained, and comparing with observed y values in our original data set.

pc10.jpg pc11.jpg

http://youtu.be/UoxvIJrdVtM

8. Exponential Model by linearizing exponential data

What process do we use to obtain an exponential model by linearizing the data and obtaining the best fit to the linearized data?

pc12.jpg   pc13.jpg

9. Power-function Model by linearizing power-function data

What process do we use to obtain a power-function model by linearizing the data and obtaining the best fit to the linearized data?

pc14.jpg   pc15.jpg

http://youtu.be/Er5G2jFt6nA

10. Modeling sequences by functions

Given a sequence, what strategies can we use to obtain a function a(n) to model the sequence?

pc17.jpg

11. Interpretation and description of graphs

Given a depth vs. clock time graph for flow from a cylinder which might not be uniform (and which hence might not give us a quadratic model), how do we determine whether depth is changing at an increasing, decreasing or constant rate?

These behaviors are indicated in the graph below.

pc18.jpg

12. Interpretation of slopes

Given a graph of some specified quantity Q, measured in given units, vs. another specified quantity x with its specified units, how do we interpret the slope of the graph of Q vs. x between two specified x values?

pc19.jpg

http://youtu.be/VUgc65a4Jc0

Equation Solving

1. Solving Linear Equations

2. Solving Quadratic Equations

3. Solving Equations with Denominators

http://youtu.be/D21h7DKwOOQ

4. Solving Equation x^p = c

5. Solving Systems of Simultaneous Equations

http://youtu.be/RHvaOFhUTE4

6. Solving Exponential Equations

http://youtu.be/90I4rbM5OEY

7. Solving Logarithmic Equations

http://youtu.be/nu77kckRaaI

Properties of Functions

1. The four basic functions

Sketch graphs of the four basic functions, clearly indicating the key graphing points. For power functions sketch graphs of the p= +-2 and +-3 functions.

2. Inverse functions

Give several examples of pairs of inverse functions. Explain how a table of y vs. x values for function which has an inverse is used to make the table for the y vs. x values of the inverse function, and how to construct a graph of the inverse of a function from the graph of the function. Explain also to determine from the graph of a function when the function does not have an inverse.

http://youtu.be/JY7RncuFjZw

3. Stretching and shifting transformations

For each of the four basic functions, show the family A f(x), f(x-h) and f(x) + c; explain how to obtain the function A f(x-h) + c, and show one good illustrative example of this function.

http://youtu.be/9-LK-sfZ0Gw

4. Power functions

Sketch graphs of the p = +-2 and p = +-3 power functions, clearly showing their behavior at the key points and indicating how this behavior will continue for greater magnitudes of p.

http://youtu.be/yc9Yvpuj7fo

5. Polynomial Functions

For a given degree n, indicate all possible numbers of zeros for a polynomial of that degree. Show every possible variation in the behavior of the function at its zeros and sketch a graph depicting each possibility.

6. Composite Functions

Express each of the following is a composite f(g(x)) of the four fundamental function families:

http://youtu.be/4lJpk_r6wx4

7. Constant Multiples, Sums and Differences of Functions

For each of the following function pairs graphically construct a graph of f(x) + g(x), f(x) - g(x), 2 f(x) and -1/3 g(x).

8. Products of Functions

For each of the following function pairs graphically construct a graph of f(x) * g(x) and f(x) / g(x).

 

 

 

"