qa initial assignments

course Mth 173

I believe I sent the first portion of the send file earlier today, because I was instructed too. I understand that the send file should only be sent at the end of the day.

?????????€????assignment #001

Your work has been received. Please scroll through the document to see any inserted notes (inserted at the appropriate place in the document, in boldface) and a note at the end. The note at the end of the file will confirm that the file has been reviewed; be sure to read that note. If there is no note at the end, notify the instructor through the Submit Work form, and include the date of the posting to your access page.

001. typewriter notation

qa initial problems

01-14-2007

......!!!!!!!!...................................

10:11:44

`q001. Explain the difference between x - 2 / x + 4 and (x - 2) / (x + 4). The evaluate each expression for x = 2.

......!!!!!!!!...................................

RESPONSE -->

In the first expression you would devide 2 by x first then subtract that from x and add 4. In the second expression, you would do what is in parentesis first then devide.

2-2/2+4=5

(2-2)/(2+4)=0

confidence assessment: 3

.................................................

......!!!!!!!!...................................

10:13:05

The order of operations dictates that grouped expressions must be evaluated first, that exponentiation must be done before multiplication or division, which must be done before addition or subtraction.

It makes a big difference whether you subtract the 2 from the x or divide the -2 by 4 first. If there are no parentheses you have to divide before you subtract. Substituting 2 for x we get

2 - 2 / 2 + 4

= 2 - 1 + 4 (do multiplications and divisions before additions and subtractions)

= 5 (add and subtract in indicated order)

If there are parentheses you evaluate the grouped expressions first:

(x - 2) / (x - 4) = (2 - 2) / ( 4 - 2) = 0 / 2 = 0.

......!!!!!!!!...................................

RESPONSE -->

This is the same logic I used in solving the expressions.

self critique assessment: 3

.................................................

......!!!!!!!!...................................

10:17:54

`q002. Explain the difference between 2 ^ x + 4 and 2 ^ (x + 4). Then evaluate each expression for x = 2.

Note that a ^ b means to raise a to the b power. This process is called exponentiation, and the ^ symbol is used on most calculators, and in most computer algebra systems, to represent exponentiation.

......!!!!!!!!...................................

RESPONSE -->

In the first expression, you would raise 2 to the power of x and then add 4. In the second expression would be solved by adding 4 to x then raising 2 to the given power.

2^2+4=8

2^(2+4)=64

confidence assessment: 3

.................................................

......!!!!!!!!...................................

10:18:44

2 ^ x + 4 indicates that you are to raise 2 to the x power before adding the 4.

2 ^ (x + 4) indicates that you are to first evaluate x + 4, then raise 2 to this power.

If x = 2, then

2 ^ x + 4 = 2 ^ 2 + 4 = 2 * 2 + 4 = 4 + 4 = 8.

and

2 ^ (x + 4) = 2 ^ (2 + 4) = 2 ^ 6 = 2*2*2*2*2*2 = 64.

......!!!!!!!!...................................

RESPONSE -->

This is the same logic I used in the solution.

self critique assessment: 3

.................................................

......!!!!!!!!...................................

10:41:02

`q003. What is the numerator of the fraction in the expression x - 3 / [ (2x-5)^2 * 3x + 1 ] - 2 + 7x? What is the denominator? What do you get when you evaluate the expression for x = 2?

......!!!!!!!!...................................

RESPONSE -->

Numerator = 3

Denominator = [(2x-5)^2*3x+1]

2-3/[(2*2-5)^2*3*2+1]-2+7*2

2-3/[(-1)^2*3*2+1]-2+14

2-3/[(-1)^2*6+1]-2+14

2-3/7-2+14

2-0.4286-2+14

13.5714

confidence assessment: 2

.................................................

......!!!!!!!!...................................

10:46:16

The numerator is 3. x isn't part of the fraction. / indicates division, which must always precede subtraction. Only the 3 is divided by [ (2x-5)^2 * 3x + 1 ] and only [ (2x-5)^2 * 3x + 1 ] divides 3.

If we mean (x - 3) / [ (2x-5)^2 * 3x + 1 ] - 2 + 7x we have to write it that way.

The preceding comments show that the denominator is [ (2x-5)^2 * 3x + 1 ]

Evaluating the expression for x = 2:

- 3 / [ (2 * 2 - 5)^2 * 3(2) + 1 ] - 2 + 7*2 =

2 - 3 / [ (4 - 5)^2 * 6 + 1 ] - 2 + 14 = evaluate in parenthese; do multiplications outside parentheses

2 - 3 / [ (-1)^2 * 6 + 1 ] -2 + 14 = add inside parentheses

2 - 3 / [ 1 * 6 + 1 ] - 2 + 14 = exponentiate in bracketed term;

2 - 3 / 7 - 2 + 14 = evaluate in brackets

13 4/7 or 95/7 or about 13.57 add and subtract in order.

The details of the calculation 2 - 3 / 7 - 2 + 14:

Since multiplication precedes addition or subtraction the 3/7 must be done first, making 3/7 a fraction. Changing the order of the terms we have

2 - 2 + 14 - 3 / 7 = 14 - 3/7 = 98/7 - 3/7 = 95/7.

COMMON STUDENT QUESTION: ok, I dont understand why x isnt part of the fraction? And I dont understand why only the brackets are divided by 3..why not the rest of the equation?

INSTRUCTOR RESPONSE: Different situations give us different algebraic expressions; the situation dictates the form of the expression.

If the above expression was was written otherwise it would be a completely different expression and most likely give you a different result when you substitute.

If we intended the numerator to be x - 3 then the expression would be written (x - 3) / [(2x-5)^2 * 3x + 1 ] - 2 + 7x, with the x - 3 grouped.

If we intended the numerator to be the entire expression after the / the expression would be written x - 3 / [(2x-5)^2 * 3x + 1 - 2 + 7x ].

......!!!!!!!!...................................

RESPONSE -->

I started out by writing the expression down on paper. This helps me figure out what the order of operations is. The form that is shown on a computer or calculator can be confusing. I worked the problem the same way, just on paper first.

self critique assessment: 2

.................................................

......!!!!!!!!...................................

10:53:02

`q004. Explain, step by step, how you evaluate the expression (x - 5) ^ 2x-1 + 3 / x-2 for x = 4.

......!!!!!!!!...................................

RESPONSE -->

Substitute 4 for x and write the expression on paper. Work inside the parentesis first, then do multiplication and division outside the parentesis. Add and subtract in order.

(4-5)^2*2*4-1+3/4-2

1*8-1+0.75-2

7.75-2

5.75

confidence assessment: 2

.................................................

......!!!!!!!!...................................

11:00:25

We get

(4-5)^2 * 4 - 1 + 3 / 1 - 4

= (-1)^2 * 4 - 1 + 3 / 4 - 2 evaluating the term in parentheses

= 1 * 4 - 1 + 3 / 4 - 2 exponentiating (2 is the exponent, which is applied to -1 rather than multiplying the 2 by 4

= 4 - 1 + 3/4 - 2 noting that 3/4 is a fraction and adding and subtracting in order we get

= 1 3/4 = 7 /4 (Note that we could group the expression as 4 - 1 - 2 + 3/4 = 1 + 3/4 = 1 3/4 = 7/4).

COMMON ERROR:

(4 - 5) ^ 2*4 - 1 + 3 / 4 - 2 = -1 ^ 2*4 - 1 + 3 / 4-2 = -1 ^ 8 -1 + 3 / 4 - 2.

INSTRUCTOR COMMENTS:

There are two errors here. In the second step you can't multiply 2 * 4 because you have (-1)^2, which must be done first.?Exponentiation precedes multiplication. ?

Also it isn't quite correct to write -1^2*4 at the beginning of the second step. If you were supposed to multiply 2 * 4 the expression would be (-1)^(2 * 4).?

Note also that the -1 needs to be grouped because the entire expression (-1) is taken to the power.?-1^8 would be -1 because you would raise 1 to the power 8 before applying the - sign, which is effectively a multiplication by -1.?......!!!!!!!!...................................

RESPONSE -->

I believe you misplaced a number in this solution. The initial expression was (x-5)^2*2x-1+3/x-2. You are showing a 4 after the parentesis, when I believe it should be an 8 because of the 2x. Other than that, the problem is solved the same.

self critique assessment: 2

.................................................

......!!!!!!!!...................................

11:02:00

*&*& Standard mathematics notation is easier to see. On the other hand it's very important to understand order of operations, and students do get used to this way of doing it.

You should of course write everything out in standard notation when you work it on paper.

It is likely that you will at some point use a computer algebra system, and when you do you will have to enter expressions through a typewriter, so it is well worth the trouble to get used to this notation.

Indicate your understanding of the necessity to understand this notation.

......!!!!!!!!...................................

RESPONSE -->

I understand, and write the expression on paper before I solve it to help with order.

self critique assessment: 2

This part was a duplicate, as you have noted. No problem this time, but do keep track of what you have sent and avoid sending duplicates.

.................................................

???s?????????v?

assignment #002

002. Describing Graphs

qa initial problems

01-14-2007

......!!!!!!!!...................................

13:12:09

`q001. You will frequently need to describe the graphs you have constructed in this course. This exercise is designed to get you used to some of the terminology we use to describe graphs. Please complete this exercise and email your work to the instructor. Note that you should do these graphs on paper without using a calculator. None of the arithmetic involved here should require a calculator, and you should not require the graphing capabilities of your calculator to answer these questions.

Problem 1. We make a table for y = 2x + 7 as follows: We construct two columns, and label the first column 'x' and the second 'y'. Put the numbers -3, -2, -1, -, 1, 2, 3 in the 'x' column. We substitute -3 into the expression and get y = 2(-3) + 7 = 1. We substitute -2 and get y = 2(-2) + 7 = 3. Substituting the remaining numbers we get y values 5, 7, 9, 11 and 13. These numbers go into the second column, each next to the x value from which it was obtained. We then graph these points on a set of x-y coordinate axes. Noting that these points lie on a straight line, we then construct the line through the points.

Now make a table for and graph the function y = 3x - 4.

Identify the intercepts of the graph, i.e., the points where the graph goes through the x and the y axes.

......!!!!!!!!...................................

RESPONSE -->

After constructing the table, the the following info was obtained:

y intercept = -4

x intercept = 1 1/3

The x intercept was not immediatly evident. I had to solve for x with the substitution of y=0.

confidence assessment: 2

.................................................

......!!!!!!!!...................................

13:13:53

The graph goes through the x axis when y = 0 and through the y axis when x = 0.

The x-intercept is therefore when 0 = 3x - 4, so 4 = 3x and x = 4/3.

The y-intercept is when y = 3 * 0 - 4 = -4. Thus the x intercept is at (4/3, 0) and the y intercept is at (0, -4).

Your graph should confirm this.

......!!!!!!!!...................................

RESPONSE -->

My graph confirms this.

self critique assessment: 3

.................................................

......!!!!!!!!...................................

13:23:45

`q002. Does the steepness of the graph in the preceding exercise (of the function y = 3x - 4) change? If so describe how it changes.

......!!!!!!!!...................................

RESPONSE -->

No. The steepness does not change because this is a linear equation.

confidence assessment: 2

.................................................

......!!!!!!!!...................................

13:24:01

The graph forms a straight line with no change in steepness.

......!!!!!!!!...................................

RESPONSE -->

self critique assessment: 3

.................................................

......!!!!!!!!...................................

13:25:48

`q003. What is the slope of the graph of the preceding two exercises (the function ia y = 3x - 4;slope is rise / run between two points of the graph)?

......!!!!!!!!...................................

RESPONSE -->

First was 2/1

Second was 3/1

confidence assessment: 2

.................................................

......!!!!!!!!...................................

13:29:35

Between any two points of the graph rise / run = 3.

For example, when x = 2 we have y = 3 * 2 - 4 = 2 and when x = 8 we have y = 3 * 8 - 4 = 20. Between these points the rise is 20 - 2 = 18 and the run is 8 - 2 = 6 so the slope is rise / run = 18 / 6 = 3.

Note that 3 is the coefficient of x in y = 3x - 4.

Note the following for reference in subsequent problems: The graph of this function is a straight line. The graph increases as we move from left to right. We therefore say that the graph is increasing, and that it is increasing at constant rate because the steepness of a straight line doesn't change.

......!!!!!!!!...................................

RESPONSE -->

I got confused and thought you meant the last two graphs not the last two questions. The slope of the last two questions is 3/1 as you stated.

self critique assessment: 1

Your self-critique was correct and complete. The choices given by the program might or might not cover this situation, but in such a case you should use 3.

.................................................

......!!!!!!!!...................................

13:34:44

`q004. Make a table of y vs. x for y = x^2. Graph y = x^2 between x = 0 and x = 3.

Would you say that the graph is increasing or decreasing?

Does the steepness of the graph change and if so, how?

Would you say that the graph is increasing at an increasing rate, increasing at a constant rate, increasing at a decreasing rate, decreasing at an decreasing rate, decreasing at a constant rate, or decreasing at a decreasing rate?

......!!!!!!!!...................................

RESPONSE -->

Incresing.

The steepness of the graph is incresing.

I would say the graph is incresing at an increasing rate.

confidence assessment: 2

.................................................

......!!!!!!!!...................................

13:35:35

Graph points include (0,0), (1,1), (2,4) and (3,9). The y values are 0, 1, 4 and 9, which increase as we move from left to right.

The increases between these points are 1, 3 and 5, so the graph not only increases, it increases at an increasing rate

STUDENT QUESTION: I understand increasing...im just not sure at what rate...how do you determine increasing at an increasing rate or a constant rate?

INSTRUCTOR RESPONSE: Does the y value increase by the same amount, by a greater amount or by a lesser amount every time x increases by 1?

In this case the increases get greater and greater. So the graph increases, and at an increasing rate. *&*&.

......!!!!!!!!...................................

RESPONSE -->

I understand the instructor response.

self critique assessment: 3

.................................................

......!!!!!!!!...................................

13:37:43

`q005. Make a table of y vs. x for y = x^2. Graph y = x^2 between x = -3 and x = 0.

Would you say that the graph is increasing or decreasing?

Does the steepness of the graph change and if so, how?

Would you say that the graph is increasing at an increasing rate, increasing at a constant rate, increasing at a decreasing rate, decreasing at an decreasing rate, decreasing at a constant rate, or decreasing at a decreasing rate?

......!!!!!!!!...................................

RESPONSE -->

Decresing.

Steepness is decresing.

Decresing at a decresing rate.

confidence assessment: 2

.................................................

......!!!!!!!!...................................

13:38:02

From left to right the graph is decreasing (points (-3,9), (-2,4), (-1,1), (0,0) show y values 9, 4, 1, 0 as we move from left to right ). The magnitudes of the changes in x from 9 to 4 to 1 to 0 decrease, so the steepness is decreasing.

Thus the graph is decreasing, but more and more slowly. We therefore say that the graph is decreasing at a decreasing rate.

......!!!!!!!!...................................

RESPONSE -->

self critique assessment: 3

.................................................

......!!!!!!!!...................................

13:40:15

`q006. Make a table of y vs. x for y = `sqrt(x). [note: `sqrt(x) means 'the square root of x']. Graph y = `sqrt(x) between x = 0 and x = 3.

Would you say that the graph is increasing or decreasing?

Does the steepness of the graph change and if so, how?

Would you say that the graph is increasing at an increasing rate, increasing at a constant rate, increasing at a decreasing rate, decreasing at an decreasing rate, decreasing at a constant rate, or decreasing at a decreasing rate?

......!!!!!!!!...................................

RESPONSE -->

Incresing.

Steepness in decresing.

Incresing at a decresing rate.

confidence assessment: 2

.................................................

......!!!!!!!!...................................

13:40:40

If you use x values 0, 1, 2, 3, 4 you will obtain graph points (0,0), (1,1), (2,1.414), (3. 1.732), (4,2). The y value changes by less and less for every succeeding x value. Thus the steepness of the graph is decreasing.

The graph would be increasing at a decreasing rate.

If the graph respresents the profile of a hill, the hill starts out very steep but gets easier and easier to climb. You are still climbing but you go up by less with each step, so the rate of increase is decreasing.

If your graph doesn't look like this then you probably are not using a consistent scale for at least one of the axes. If your graph isn't as desribed take another look at your plot and make a note in your response indicating any difficulties.

......!!!!!!!!...................................

RESPONSE -->

self critique assessment: 3

.................................................

......!!!!!!!!...................................

13:43:14

`q007. Make a table of y vs. x for y = 5 * 2^(-x). Graph y = 5 * 2^(-x) between x = 0 and x = 3.

Would you say that the graph is increasing or decreasing?

Does the steepness of the graph change and if so, how?

Would you say that the graph is increasing at an increasing rate, increasing at a constant rate, increasing at a decreasing rate, decreasing at an decreasing rate, decreasing at a constant rate, or decreasing at a decreasing rate?

......!!!!!!!!...................................

RESPONSE -->

Decresing.

Steepness in decresing.

Decresing at a decresing rate.

confidence assessment: 2

.................................................

......!!!!!!!!...................................

13:43:23

** From basic algebra recall that a^(-b) = 1 / (a^b).

So, for example:

2^-2 = 1 / (2^2) = 1/4, so 5 * 2^-2 = 5 * 1/4 = 5/4.

5* 2^-3 = 5 * (1 / 2^3) = 5 * 1/8 = 5/8. Etc.

The decimal equivalents of the values for x = 0 to x = 3 will be 5, 2.5, 1.25, .625. These values decrease, but by less and less each time.

The graph is therefore decreasing at a decreasing rate. **

......!!!!!!!!...................................

RESPONSE -->

self critique assessment: 3

.................................................

......!!!!!!!!...................................

13:46:27

`q008. Suppose you stand still in front of a driveway. A car starts out next to you and moves away from you, traveling faster and faster.

If y represents the distance from you to the car and t represents the time in seconds since the car started out, would a graph of y vs. t be increasing or decreasing?

Would you say that the graph is increasing at an increasing rate, increasing at a constant rate, increasing at a decreasing rate, decreasing at an decreasing rate, decreasing at a constant rate, or decreasing at a decreasing rate?

......!!!!!!!!...................................

RESPONSE -->

Incresing.

Incresing at a decreasing rate.

confidence assessment: 1

.................................................

......!!!!!!!!...................................

13:47:23

** The speed of the car increases so it goes further each second. On a graph of distance vs. clock time there would be a greater change in distance with each second, which would cause a greater slope with each subsequent second. The graph would therefore be increasing at an increasing rate. **

......!!!!!!!!...................................

RESPONSE -->

I thought I might of had the axis reversed, and I did. That is where I went wrong.

self critique assessment: 3

.................................................

????zr??????{wd?

assignment #005

005. Calculus

qa initial problems

01-14-2007

......!!!!!!!!...................................

16:32:33

`q001. The graph of a certain function is a smooth curve passing through the points (3, 5), (7, 17) and (10, 29).

Between which two points do you think the graph is steeper, on the average?

Why do we say 'on the average'?

......!!!!!!!!...................................

RESPONSE -->

I believe the graph would be steepest on average between (7,17) and (10'29) because the ratio of change is 12/3 as compared to 12/4 of the first two points.

You have to say average because this is a curved line. The ratios above are based on a straight line with uniform change.

confidence assessment: 2

.................................................

......!!!!!!!!...................................

16:34:12

Slope = rise / run.

Between points (7, 17) and (10, 29) we get rise / run = (29 - 17) / (10 - 7) =12 / 3 = 4.

The slope between points (3, 5) and (7, 17) is 3 / 1. (17 - 5) / (7 -3) = 12 / 4 = 3.

The segment with slope 4 is the steeper. The graph being a smooth curve, slopes may vary from point to point. The slope obtained over the interval is a specific type of average of the slopes of all points between the endpoints.

......!!!!!!!!...................................

RESPONSE -->

I should have reduced the fractions. I came out with the same answer.

self critique assessment: 2

.................................................

......!!!!!!!!...................................

16:44:35

2. Answer without using a calculator: As x takes the values 2.1, 2.01, 2.001 and 2.0001, what values are taken by the expression 1 / (x - 2)?

1. As the process continues, with x getting closer and closer to 2, what happens to the values of 1 / (x-2)?

2. Will the value ever exceed a billion? Will it ever exceed one trillion billions?

3. Will it ever exceed the number of particles in the known universe?

4. Is there any number it will never exceed?

5. What does the graph of y = 1 / (x-2) look like in the vicinity of x = 2?

......!!!!!!!!...................................

RESPONSE -->

Values =10, 100, 1000, 10,000

1. As the value of x gets closer to 2, the values get larger.

2. The value will eventually exceed a billion then continue on to exceed one trillion billion.

3. The value would eventually exceed the number of particles in the known universe because the denominator will never = 2.

4. There is no number that it will not exceed.

5. The graph would look like a near perfect vertical line.

self critique assessment: 3

.................................................

......!!!!!!!!...................................

16:47:35

For x = 2.1, 2.01, 2.001, 2.0001 we see that x -2 = .1, .01, .001, .0001. Thus 1/(x -2) takes respective values 10, 100, 1000, 10,000.

It is important to note that x is changing by smaller and smaller increments as it approaches 2, while the value of the function is changing by greater and greater amounts.

As x gets closer in closer to 2, it will reach the values 2.00001, 2.0000001, etc.. Since we can put as many zeros as we want in .000...001 the reciprocal 100...000 can be as large as we desire. Given any number, we can exceed it.

Note that the function is simply not defined for x = 2. We cannot divide 1 by 0 (try counting to 1 by 0's..You never get anywhere. It can't be done. You can count to 1 by .1's--.1, .2, .3, ..., .9, 1. You get 10. You can do similar thing for .01, .001, etc., but you just can't do it for 0).

As x approaches 2 the graph approaches the vertical line x = 2; the graph itself is never vertical. That is, the graph will have a vertical asymptote at the line x = 2. As x approaches 2, therefore, 1 / (x-2) will exceed all bounds.

Note that if x approaches 2 through the values 1.9, 1.99, ..., the function gives us -10, -100, etc.. So we can see that on one side of x = 2 the graph will approach +infinity, on the other it will be negative and approach -infinity.

......!!!!!!!!...................................

RESPONSE -->

I did not see the fact that the function would be undefined at x=2. I should have seen that.

self critique assessment: 2

I'd give this self-critique a 3. It seems clear that you understand everything.

.................................................

......!!!!!!!!...................................

16:53:33

`q003. One straight line segment connects the points (3,5) and (7,9) while another connects the points (10,2) and (50,4). From each of the four points a line segment is drawn directly down to the x axis, forming two trapezoids. Which trapezoid has the greater area? Try to justify your answer with something more precise than, for example, 'from a sketch I can see that this one is much bigger so it must have the greater area'.

......!!!!!!!!...................................

RESPONSE -->

I would have to say the second trapezoid would be the largest because the horizontal difference is 40 as compared to 4 for the first. The first is taller but the second is much longer.

confidence assessment: 1

.................................................

......!!!!!!!!...................................

16:56:19

Your sketch should show that while the first trapezoid averages a little more than double the altitude of the second, the second is clearly much more than twice as wide and hence has the greater area.

To justify this a little more precisely, the first trapezoid, which runs from x = 3 to x = 7, is 4 units wide while the second runs from x = 10 and to x = 50 and hence has a width of 40 units. The altitudes of the first trapezoid are 5 and 9,so the average altitude of the first is 7. The average altitude of the second is the average of the altitudes 2 and 4, or 3. So the first trapezoid is over twice as high, on the average, as the first. However the second is 10 times as wide, so the second trapezoid must have the greater area.

This is all the reasoning we need to answer the question. We could of course multiply average altitude by width for each trapezoid, obtaining area 7 * 4 = 28 for the first and 3 * 40 = 120 for the second. However if all we need to know is which trapezoid has a greater area, we need not bother with this step.

......!!!!!!!!...................................

RESPONSE -->

I did not sketch the graph.

self critique assessment: 2

.................................................

......!!!!!!!!...................................

17:07:42

`q004. If f(x) = x^2 (meaning 'x raised to the power 2') then which is steeper, the line segment connecting the x = 2 and x = 5 points on the graph of f(x), or the line segment connecting the x = -1 and x = 7 points on the same graph? Explain the basisof your reasoning.

......!!!!!!!!...................................

RESPONSE -->

(2,4)(5,25) = 3/21 which gives a slope of 21/3 = 7

(-1,1)(7,49) = 6/48 which gives a slope of 48/6=8

The second line has a greater slope therefore is steeper.

confidence assessment: 2

.................................................

......!!!!!!!!...................................

17:10:31

The line segment connecting x = 2 and the x = 5 points is steeper: Since f(x) = x^2, x = 2 gives y = 4 and x = 5 gives y = 25. The slope between the points is rise / run = (25 - 4) / (5 - 2) = 21 / 3 = 7.

The line segment connecting the x = -1 point (-1,1) and the x = 7 point (7,49) has a slope of (49 - 1) / (7 - -1) = 48 / 8 = 6.

The slope of the first segment is greater.

......!!!!!!!!...................................

RESPONSE -->

I made a subtraction error in subtracting (7- -1)=8. I did (7-1)=6. I should have caught this.

self critique assessment: 2

I'd give this self-critique a 3. It seems clear that you understand everything.

.................................................

......!!!!!!!!...................................

17:19:37

`q005. Suppose that every week of the current millenium you go to the jewler and obtain a certain number of grams of pure gold, which you then place in an old sock and bury in your backyard. Assume that buried gold lasts a long, long time ( this is so), that the the gold remains undisturbed (maybe, maybe not so), that no other source adds gold to your backyard (probably so), and that there was no gold in your yard before..

1. If you construct a graph of y = the number of grams of gold in your backyard vs. t = the number of weeks since Jan. 1, 2000, with the y axis pointing up and the t axis pointing to the right, will the points on your graph lie on a level straight line, a rising straight line, a falling straight line, a line which rises faster and faster, a line which rises but more and more slowly, a line which falls faster and faster, or a line which falls but more and more slowly?

2. Answer the same question assuming that every week you bury 1 more gram than you did the previous week.

{}3. Answer the same question assuming that every week you bury half the amount you did the previous week.

......!!!!!!!!...................................

RESPONSE -->

1. The points will remain on a rising straight line because the amount of gold is incresing at the same rate that time is changing.

2. The points would be on a line that rises faster and faster because the amount of gold is being incresed by one gram each week.

3. The points would be on a line that rises more and more slowly because the amount of gold is being decresed each week. Theoretically the line would never reach a horizontal line, but it will look like that over time.

confidence assessment: 2

.................................................

......!!!!!!!!...................................

17:21:57

1. If it's the same amount each week it would be a straight line.

2. Buying gold every week, the amount of gold will always increase. Since you buy more each week the rate of increase will keep increasing. So the graph will increase, and at an increasing rate.

3. Buying gold every week, the amount of gold won't ever decrease. Since you buy less each week the rate of increase will just keep falling. So the graph will increase, but at a decreasing rate. This graph will in fact approach a horizontal asymptote, since we have a geometric progression which implies an exponential function.

......!!!!!!!!...................................

RESPONSE -->

I think your response to 1. should be an incresing straight line. A straight line implies that the amount of gold would never increase.

self critique assessment: 3

The result is a straight line, so technically that answer would be correct; however the question pretty clearly asked for a distinction between a level and a rising straight line, so I agree with your comment.

I've been using this for years and a lot of excellent students have been through it, and this is the first time someone pointed this out. I should have noticed it also. I'll revise future versions accordingly.

.................................................

......!!!!!!!!...................................

17:23:49

`q006. Suppose that every week you go to the jewler and obtain a certain number of grams of pure gold, which you then place in an old sock and bury in your backyard. Assume that buried gold lasts a long, long time, that the the gold remains undisturbed, and that no other source adds gold to your backyard.

1. If you graph the rate at which gold is accumulating from week to week vs. tne number of weeks since Jan 1, 2000, will the points on your graph lie on a level straight line, a rising straight line, a falling straight line, a line which rises faster and faster, a line which rises but more and more slowly, a line which falls faster and faster, or a line which falls but more and more slowly?

2. Answer the same question assuming that every week you bury 1 more gram than you did the previous week.

3. Answer the same question assuming that every week you bury half the amount you did the previous week.

......!!!!!!!!...................................

RESPONSE -->

This is the same question as before.

confidence assessment: 3

.................................................

......!!!!!!!!...................................

17:25:16

This set of questions is different from the preceding set. This question now asks about a graph of rate vs. time, whereas the last was about the graph of quantity vs. time.

Question 1: This question concerns the graph of the rate at which gold accumulates, which in this case, since you buy the same amount eact week, is constant. The graph would be a horizontal straight line.

Question 2: Each week you buy one more gram than the week before, so the rate goes up each week by 1 gram per week. You thus get a risingstraight line because the increase in the rate is the same from one week to the next.

Question 3. Since half the previous amount will be half of a declining amount, the rate will decrease while remaining positive, so the graph remains positive as it decreases more and more slowly. The rate approaches but never reaches zero.

......!!!!!!!!...................................

RESPONSE -->

I did not read the question well enough.

self critique assessment: 0

You need a detailed self-critique here.

This is an important distinction, central to the fundamental theorem of the calculus. Be sure you understand.

.................................................

......!!!!!!!!...................................

17:34:25

``q007. If the depth of water in a container is given, in centimeters, by 100 - 2 t + .01 t^2, where t is clock time in seconds, then what are the depths at clock times t = 30, t = 40 and t = 60? On the average is depth changing more rapidly during the first time interval or the second?

......!!!!!!!!...................................

RESPONSE -->

t=30 depth=49cm

t=40 depth=36cm

t=60 depth=16cm

first interval slope = 13/10

second interval slope = 20/20 = 1

water depth is changing more rapidly during the first interval.

self critique assessment: 2

.................................................

......!!!!!!!!...................................

17:34:50

At t = 30 we get depth = 100 - 2 t + .01 t^2 = 100 - 2 * 30 + .01 * 30^2 = 49.

At t = 40 we get depth = 100 - 2 t + .01 t^2 = 100 - 2 * 40 + .01 * 40^2 = 36.

At t = 60 we get depth = 100 - 2 t + .01 t^2 = 100 - 2 * 60 + .01 * 60^2 = 16.

49 cm - 36 cm = 13 cm change in 10 sec or 1.3 cm/s on the average.

36 cm - 16 cm = 20 cm change in 20 sec or 1.0 cm/s on the average.

......!!!!!!!!...................................

RESPONSE -->

self critique assessment: 3

.................................................

......!!!!!!!!...................................

17:40:04

`q008. If the rate at which water descends in a container is given, in cm/s, by 10 - .1 t, where t is clock time in seconds, then at what rate is water descending when t = 10, and at what rate is it descending when t = 20? How much would you therefore expect the water level to change during this 10-second interval?

......!!!!!!!!...................................

RESPONSE -->

t = 10 rate = 9.9 cm/s

t = 20 rate = 9.8 cm/s

I would average the two and would expect 9.85 centementers a second times 10 seconds gives 98.5 centemeters.

confidence assessment: 2

.................................................

......!!!!!!!!...................................

17:42:59

At t = 10 sec the rate function gives us 10 - .1 * 10 = 10 - 1 = 9, meaning a rate of 9 cm / sec.

At t = 20 sec the rate function gives us 10 - .1 * 20 = 10 - 2 = 8, meaning a rate of 8 cm / sec.

The rate never goes below 8 cm/s, so in 10 sec the change wouldn't be less than 80 cm.

The rate never goes above 9 cm/s, so in 10 sec the change wouldn't be greater than 90 cm.

Any answer that isn't between 80 cm and 90 cm doesn't fit the given conditions..

The rate change is a linear function of t. Therefore the average rate is the average of the two rates, or 9.5 cm/s.

The average of the rates is 8.5 cm/sec. In 10 sec that would imply a change of 85 cm.

......!!!!!!!!...................................

RESPONSE -->

I used 10-.01*10 rather than 10-.1*10. This threw my math off, but the problem was still worked out the same way.

self critique assessment: 2

.................................................

"

Very good work. Let me know if you have questions.