Note: Final Exam is at 10:45 on Tuesday, 5/3/11 (This is the Final Exam time reserved for our labs). From Practice Test I

Size: px
Start display at page:

Download "Note: Final Exam is at 10:45 on Tuesday, 5/3/11 (This is the Final Exam time reserved for our labs). From Practice Test I"

Transcription

1 MA Practice Final Answers in Red 4/8/ and 4/9/ Name Note: Final Exam is at :45 on Tuesday, 5// (This is the Final Exam time reserved for our labs). From Practice Test I Consider the integral 5 x dx. Sketch a graph of this function and the area corresponding to this integral. Draw in five rectangles with equal widths and upper-right corners on the graph. We have been calling the sum of the areas of these rectangles the Right Sum with five rectangles. Use these five rectangles to compute an estimate for the given integral. (.6).6 + (.).6 + (.8).6 + (4.4).6 + (5.).6 = The following is a program that will compute the Right Sum with rectangles. Fill in the missing step(s) between the do and the o f := x -> *x^; s := ; for n from by to do s := s + f (+n*.)*.; od; If we were to graph a speed/velocity function v(t) (measured in feet per seconds) with respect to t (measured in seconds), what units would we use to measure area in this graph? feet Draw a picture of the region that corresponds to x dx. e. You can use the area formula for a triangle to evaluate the integral in the previous problem. What is the base, and what is the height of the triangle? The base is, and the height is f() = 6.. Evaluate the following definite integrals using the Fundamental Theorem of Calculus. x dx. = x = 8. π/ cos(x) dx. = sin(x) π/ =. ex dx. = e x = e. x dx. = ln(x) = ln(). 4. Evaluate the following indefinite integrals. (Don t forget the +C s.) x + x + x + dx. = x4 4 + x + x + x + C. sin(x) dx. = cos(x) + C.

2 MA Practice Final Answers in Red e x + cos(x) dx. = e x + sin(x) + C. x dx. = x / dx = x/ / + C = x/ + C. 5. Use substitution to evaluate the following indefinite integrals. () x cos(x ) dx. Let u = x, then du = x dx. x cos(x ) dx = cos(u) du = sin(u) + C = sin(x ) + C. () x (x + 7) dx. Let u = x + 7, then du = x dx. x (x + 7) dx = u du = u C = (x + 7) 4 + C. () (x + ) x + x + dx. Let u = x + x +, then du = x +. (x + ) u x u / + x + dx = du = / + C = (x + x + ) / + C (4) xe x dx. Let u = x, then du = x dx. xe x dx = e u du = ex + C. 6. For each of the following, make the indicated u-substitution to rewrite the given definite integral in x as a definite integral in u. x(x + ) 4 dx, using u = x +. = 7 xex dx, using u = x. = 5 9 eu du. x x 4 dx, using u = x 4. = u du. u4 du. π/ cos(x)e sin(x) dx, using u = sin(x). = eu du.. From Practice Test II I said in class that all exponential functions can be expressed in terms of the exponential function e x. For example, the function f(x) = x could be written in the form f(x) = e rx for some constant r. Find r. We know that a = e ln(a), therefore, a x = e ln(a) x. In this case, r = ln().986 f := x -> x^; a := ; b := 4; N := 5; w := (b-a)/n; s := f(a)+f(b); for n from by to N- do s := evalf( s + *f(a+n*w) ); od;

3 MA Practice Final Answers in Red evalf(s*w/); In the program above, what definite integral are we approximating? 4 x dx. Which program is this? (I.e., is this a Right Sum, a Left Sum, et?) This is Trap(5). You can tell by the multipliers of on the middle terms, and the fact that we re dividing everything by. The following five numbers are the results of Right(5), Left(5), Trap(5), Mid(5), and Simp(5): , , , 6.75, and Which one is which? Over this interval, f(x) = x is increasing, so Right(5) is an overestimate. We also know that Right and Left should be the worst approximations. The curve is concave up, so Trap(5) is an overestimate, and also Mid(5) and Trap(5) should be the third and fourth best estimates. The numbers are Right(5)= , Left(5)= , Trap(5)= , Mid(5)= , and Simp(5)= Evaluate the following integrals. [[Note: I will give you a formula sheet covering the integrals we ve derive]] a) arctan(x) + C. b) arcsin(sin(x)) + C = x + C. +4x dx. cos(x) sin (x) dx. 6. Use integration by parts to do the following integrals. a) x ln(x) x + C. b) xex ex 4 + C. c) xe x e x + C. d) xsin(x) + cos(x) + C. 4 4 ln(x) dx. (Let u(x) = ln(x) and v (x) =.) xe x dx. xe x dx. x cos(x) dx. 8. Evaluate the following improper integrals. a) x d) x = 5 =. =. e) 5 5 x x dx. =. b) x =. c) e x = + =. x dx. e x dx. x / dx. e. x 4/5 dx. From Test III. Suppose you have an integral b f(x) dx, and you know that f(x) is concave down over the interval a [ a, b ]. Suppose also that MID() and TRAP() gave the two numbers.4475 and.4487, not necessarily in that order. Which of the two numbers is MID()? If the graph is concave down, then MID is an overestimate, so we re looking for the larger number,.4475.

4 MA Practice Final Answers in Red 4 You know absolutely for sure that the actual value of the integral, rounded to one decimal place, is.4. Right? Based on the information you have, what is the maximum number of decimal places that you can round the actual value of the integral to, and be absolutely sure that you ve got the right number? Three. If you round the two numbers to three decimal places, you get the same thing, but rounding to four gives you different numbers. What s that number?.4. You have some function f, and you re trying to approximate the integral 4 f(x) dx using the Monte Carlo metho You know that < f(x) < 5, so you test 5 randomly generated points in the rectangle x 4 and y 5. If 44 of these points lie below the curve, what is the corresponding approximation of 4 f(x) dx? The proportion of dart hits below the curve approximates the proportion of area below the curve. Therefore, our approximation is 44 5 = Use L Hôpital s rule on the following limits. x lim + 6x x. = lim 5x +7x x+7 = lim 6 = 5. lim x x e x. = lim x e x = lim e x =. 4. Evaluate the following improper integral. 4x 4 x dx. /4 = Evaluate the integral sin (θ) dθ. cos(θ) dθ = θ sin(θ) 4 + C. 6. Evaluate the integral x dx using the substitution x = sin(θ). sin (θ) cos(θ) dθ = 9π 4. π/ 8. Find the two basic solutions to the given differential equation. y 4y 5y =. Solve r 4r 5 = to get r =, 5 and the two solutions y = e x, e 5x. y + y =. Solve r + r = to get r =, and the two solutions y =, e x. 9. Solve this separable differential equation, xy + (x + )y =. solution is y = e x ln(x) + C = C xe. x y dy = x dx. The explicit. Find the area between y = sin(x) and y = x π shown below. π/ sin(x) x π dx = π 4 +.

5 MA Practice Final Answers in Red 5. Suppose you had a square-based pyramid of height 5, and the base has sides of length. Use an integral ( to find the volume (i.e., using the volume formula for a pyramid will count for nothing). 5 x ) dx = We have a conical tank filled with water. The tank is 6 feet deep and feet across at the top. Compute the work necessary to empty the tank. (The density of water is 6.4 pounds per cubic foot.) 6 (6 x)6.4π ( 5 6 x ) dx = 4,7.7.

6 MA Practice Final Answers in Red 6 After Test III. For the differential equation dy dx = x y with the initial condition y() =, use Euler s method to find y(.6) using steps of dx =.. At the point (, ), the slope is dy dx = () =, so as we move from x = to x =., y changes dy =. =. The next point is (., ). At the point (., ), the slope is dy dx = (.) =.8, so as we move from x =. to x =.4, y changes dy =.8. =.6. The next point is (.4,.6). At the point (.4,.6), the slope is dy dx = (.4).6 =.565, so as we move from x =.4 to x =.6, y changes dy =.565. =.645. The next point is (.,.85). The approximation of y(.6) is.85.. Find the best-fit cubic p(x) = ax + bx + cx + d to the function f(x) = e x at x =. We know that p() = d, p () = c, p () = b, p () = 6 We also know that f() =, f () =, f () = 4, f () = 8. This means that (5) p(x) = 4 x + x + x +.. Find the sum of the following series. ( i= ) i. =. ( i= ) i. = Determine whether the following series converge or diverge, and tell how you know (e.g., converges by the p-test, because p = >. ) i= i. Converges by p-test, because p = >. i= i. Converges because this is a geometric series with r =. i= i +. This is smaller than the p-series i, which converges, because p = >. Our series converges, therefore, by the comparison test. e. f. i= i i!. By the ratio test, we have a ratio i+ <, so this series converges. i= i= ( ) i i+. Converges by the alternating series test, since the terms go to zero. ( ) i. The terms go to, so this series diverges by the divergence test. i 5. Find the interval and radius of convergence for each of the given power series. i= (x) i i. By the ratio test, the ratio is x i i+ x <, so the series converges for < x <. For x =, we have an alternating harmonic series, which converges. For x =, we have the harmonic series, which diverges. Therefore, the interval of convergence is (6) x <, and the radius of convergence is. i= xi x i. By the ratio test, the ratio is x <, so the series converges for < x <. The i (i+) series also converges at the endpoints (alternating series test and p-series, with p = > ), so the interval of convergence is (7) x,

7 MA Practice Final Answers in Red 7 and the radius of convergence is. (x ) i i= i. By the ratio test, the ratio is (x ) i i+ x <, so the series converges for < x <. We have an alternating harmonic series at x =, and a harmonic series at x =, so the interval of convergence is (8) x <, with a radius of convergence of.

SOLUTIONS FOR PRACTICE FINAL EXAM

SOLUTIONS FOR PRACTICE FINAL EXAM SOLUTIONS FOR PRACTICE FINAL EXAM ANDREW J. BLUMBERG. Solutions () Short answer questions: (a) State the mean value theorem. Proof. The mean value theorem says that if f is continuous on (a, b) and differentiable

More information

THE NATIONAL UNIVERSITY OF IRELAND, CORK COLÁISTE NA hollscoile, CORCAIGH UNIVERSITY COLLEGE, CORK. Summer Examination 2009.

THE NATIONAL UNIVERSITY OF IRELAND, CORK COLÁISTE NA hollscoile, CORCAIGH UNIVERSITY COLLEGE, CORK. Summer Examination 2009. OLLSCOIL NA héireann, CORCAIGH THE NATIONAL UNIVERSITY OF IRELAND, CORK COLÁISTE NA hollscoile, CORCAIGH UNIVERSITY COLLEGE, CORK Summer Examination 2009 First Engineering MA008 Calculus and Linear Algebra

More information

MATH 2300 review problems for Exam 1 ANSWERS

MATH 2300 review problems for Exam 1 ANSWERS MATH review problems for Exam ANSWERS. Evaluate the integral sin x cos x dx in each of the following ways: This one is self-explanatory; we leave it to you. (a) Integrate by parts, with u = sin x and dv

More information

Without fully opening the exam, check that you have pages 1 through 11.

Without fully opening the exam, check that you have pages 1 through 11. MTH 33 Solutions to Final Exam May, 8 Name: Section: Recitation Instructor: INSTRUCTIONS Fill in your name, etc. on this first page. Without fully opening the exam, check that you have pages through. Show

More information

Solutions to Exam 2, Math 10560

Solutions to Exam 2, Math 10560 Solutions to Exam, Math 6. Which of the following expressions gives the partial fraction decomposition of the function x + x + f(x = (x (x (x +? Solution: Notice that (x is not an irreducile factor. If

More information

Practice problems from old exams for math 132 William H. Meeks III

Practice problems from old exams for math 132 William H. Meeks III Practice problems from old exams for math 32 William H. Meeks III Disclaimer: Your instructor covers far more materials that we can possibly fit into a four/five questions exams. These practice tests are

More information

y = x 3 and y = 2x 2 x. 2x 2 x = x 3 x 3 2x 2 + x = 0 x(x 2 2x + 1) = 0 x(x 1) 2 = 0 x = 0 and x = (x 3 (2x 2 x)) dx

y = x 3 and y = 2x 2 x. 2x 2 x = x 3 x 3 2x 2 + x = 0 x(x 2 2x + 1) = 0 x(x 1) 2 = 0 x = 0 and x = (x 3 (2x 2 x)) dx Millersville University Name Answer Key Mathematics Department MATH 2, Calculus II, Final Examination May 4, 2, 8:AM-:AM Please answer the following questions. Your answers will be evaluated on their correctness,

More information

Math 1310 Final Exam

Math 1310 Final Exam Math 1310 Final Exam December 11, 2014 NAME: INSTRUCTOR: Write neatly and show all your work in the space provided below each question. You may use the back of the exam pages if you need additional space

More information

Math 230 Mock Final Exam Detailed Solution

Math 230 Mock Final Exam Detailed Solution Name: Math 30 Mock Final Exam Detailed Solution Disclaimer: This mock exam is for practice purposes only. No graphing calulators TI-89 is allowed on this test. Be sure that all of your work is shown and

More information

Math 142, Final Exam, Fall 2006, Solutions

Math 142, Final Exam, Fall 2006, Solutions Math 4, Final Exam, Fall 6, Solutions There are problems. Each problem is worth points. SHOW your wor. Mae your wor be coherent and clear. Write in complete sentences whenever this is possible. CIRCLE

More information

This practice exam is intended to help you prepare for the final exam for MTH 142 Calculus II.

This practice exam is intended to help you prepare for the final exam for MTH 142 Calculus II. MTH 142 Practice Exam Chapters 9-11 Calculus II With Analytic Geometry Fall 2011 - University of Rhode Island This practice exam is intended to help you prepare for the final exam for MTH 142 Calculus

More information

2t t dt.. So the distance is (t2 +6) 3/2

2t t dt.. So the distance is (t2 +6) 3/2 Math 8, Solutions to Review for the Final Exam Question : The distance is 5 t t + dt To work that out, integrate by parts with u t +, so that t dt du The integral is t t + dt u du u 3/ (t +) 3/ So the

More information

Final Exam 2011 Winter Term 2 Solutions

Final Exam 2011 Winter Term 2 Solutions . (a Find the radius of convergence of the series: ( k k+ x k. Solution: Using the Ratio Test, we get: L = lim a k+ a k = lim ( k+ k+ x k+ ( k k+ x k = lim x = x. Note that the series converges for L

More information

Practice Questions From Calculus II. 0. State the following calculus rules (these are many of the key rules from Test 1 topics).

Practice Questions From Calculus II. 0. State the following calculus rules (these are many of the key rules from Test 1 topics). Math 132. Practice Questions From Calculus II I. Topics Covered in Test I 0. State the following calculus rules (these are many of the key rules from Test 1 topics). (Trapezoidal Rule) b a f(x) dx (Fundamental

More information

Review Problems for the Final

Review Problems for the Final Review Problems for the Final Math -3 5 7 These problems are provided to help you study. The presence of a problem on this handout does not imply that there will be a similar problem on the test. And the

More information

Integration by Parts

Integration by Parts Calculus 2 Lia Vas Integration by Parts Using integration by parts one transforms an integral of a product of two functions into a simpler integral. Divide the initial function into two parts called u

More information

Solutions to Exam 1, Math Solution. Because f(x) is one-to-one, we know the inverse function exists. Recall that (f 1 ) (a) =

Solutions to Exam 1, Math Solution. Because f(x) is one-to-one, we know the inverse function exists. Recall that (f 1 ) (a) = Solutions to Exam, Math 56 The function f(x) e x + x 3 + x is one-to-one (there is no need to check this) What is (f ) ( + e )? Solution Because f(x) is one-to-one, we know the inverse function exists

More information

Calculus II - Fall 2013

Calculus II - Fall 2013 Calculus II - Fall Midterm Exam II, November, In the following problems you are required to show all your work and provide the necessary explanations everywhere to get full credit.. Find the area between

More information

MATH 162. Midterm Exam 1 - Solutions February 22, 2007

MATH 162. Midterm Exam 1 - Solutions February 22, 2007 MATH 62 Midterm Exam - Solutions February 22, 27. (8 points) Evaluate the following integrals: (a) x sin(x 4 + 7) dx Solution: Let u = x 4 + 7, then du = 4x dx and x sin(x 4 + 7) dx = 4 sin(u) du = 4 [

More information

c) xy 3 = cos(7x +5y), y 0 = y3 + 7 sin(7x +5y) 3xy sin(7x +5y) d) xe y = sin(xy), y 0 = ey + y cos(xy) x(e y cos(xy)) e) y = x ln(3x + 5), y 0

c) xy 3 = cos(7x +5y), y 0 = y3 + 7 sin(7x +5y) 3xy sin(7x +5y) d) xe y = sin(xy), y 0 = ey + y cos(xy) x(e y cos(xy)) e) y = x ln(3x + 5), y 0 Some Math 35 review problems With answers 2/6/2005 The following problems are based heavily on problems written by Professor Stephen Greenfield for his Math 35 class in spring 2005. His willingness to

More information

Math 147 Exam II Practice Problems

Math 147 Exam II Practice Problems Math 147 Exam II Practice Problems This review should not be used as your sole source for preparation for the exam. You should also re-work all examples given in lecture, all homework problems, all lab

More information

Math 142, Final Exam. 12/7/10.

Math 142, Final Exam. 12/7/10. Math 4, Final Exam. /7/0. No notes, calculator, or text. There are 00 points total. Partial credit may be given. Write your full name in the upper right corner of page. Number the pages in the upper right

More information

1. (16pts) Use the graph of the function to answer the following. Justify your answer if a limit does not exist. lim

1. (16pts) Use the graph of the function to answer the following. Justify your answer if a limit does not exist. lim Spring 10/MAT 250/Exam 1 Name: Show all your work. 1. (16pts) Use the graph of the function to answer the following. Justify your answer if a limit does not exist. lim x 1 +f(x) = lim x 3 f(x) = lim x

More information

UNIVERSITY OF HOUSTON HIGH SCHOOL MATHEMATICS CONTEST Spring 2018 Calculus Test

UNIVERSITY OF HOUSTON HIGH SCHOOL MATHEMATICS CONTEST Spring 2018 Calculus Test UNIVERSITY OF HOUSTON HIGH SCHOOL MATHEMATICS CONTEST Spring 2018 Calculus Test NAME: SCHOOL: 1. Let f be some function for which you know only that if 0 < x < 1, then f(x) 5 < 0.1. Which of the following

More information

Math 180, Exam 2, Practice Fall 2009 Problem 1 Solution. f(x) = arcsin(2x + 1) = sin 1 (3x + 1), lnx

Math 180, Exam 2, Practice Fall 2009 Problem 1 Solution. f(x) = arcsin(2x + 1) = sin 1 (3x + 1), lnx Math 80, Exam, Practice Fall 009 Problem Solution. Differentiate the functions: (do not simplify) f(x) = x ln(x + ), f(x) = xe x f(x) = arcsin(x + ) = sin (3x + ), f(x) = e3x lnx Solution: For the first

More information

Spring 2015 Sample Final Exam

Spring 2015 Sample Final Exam Math 1151 Spring 2015 Sample Final Exam Final Exam on 4/30/14 Name (Print): Time Limit on Final: 105 Minutes Go on carmen.osu.edu to see where your final exam will be. NOTE: This exam is much longer than

More information

Math 113 (Calculus II) Final Exam KEY

Math 113 (Calculus II) Final Exam KEY Math (Calculus II) Final Exam KEY Short Answer. Fill in the blank with the appropriate answer.. (0 points) a. Let y = f (x) for x [a, b]. Give the formula for the length of the curve formed by the b graph

More information

x+1 e 2t dt. h(x) := Find the equation of the tangent line to y = h(x) at x = 0.

x+1 e 2t dt. h(x) := Find the equation of the tangent line to y = h(x) at x = 0. Math Sample final problems Here are some problems that appeared on past Math exams. Note that you will be given a table of Z-scores for the standard normal distribution on the test. Don t forget to have

More information

More Final Practice Problems

More Final Practice Problems 8.0 Calculus Jason Starr Final Exam at 9:00am sharp Fall 005 Tuesday, December 0, 005 More 8.0 Final Practice Problems Here are some further practice problems with solutions for the 8.0 Final Exam. Many

More information

MATH 162. FINAL EXAM ANSWERS December 17, 2006

MATH 162. FINAL EXAM ANSWERS December 17, 2006 MATH 6 FINAL EXAM ANSWERS December 7, 6 Part A. ( points) Find the volume of the solid obtained by rotating about the y-axis the region under the curve y x, for / x. Using the shell method, the radius

More information

MATH 1242 FINAL EXAM Spring,

MATH 1242 FINAL EXAM Spring, MATH 242 FINAL EXAM Spring, 200 Part I (MULTIPLE CHOICE, NO CALCULATORS).. Find 2 4x3 dx. (a) 28 (b) 5 (c) 0 (d) 36 (e) 7 2. Find 2 cos t dt. (a) 2 sin t + C (b) 2 sin t + C (c) 2 cos t + C (d) 2 cos t

More information

Calculus I Review Solutions

Calculus I Review Solutions Calculus I Review Solutions. Compare and contrast the three Value Theorems of the course. When you would typically use each. The three value theorems are the Intermediate, Mean and Extreme value theorems.

More information

Final Exam Review Quesitons

Final Exam Review Quesitons Final Exam Review Quesitons. Compute the following integrals. (a) x x 4 (x ) (x + 4) dx. The appropriate partial fraction form is which simplifies to x x 4 (x ) (x + 4) = A x + B (x ) + C x + 4 + Dx x

More information

Math 226 Calculus Spring 2016 Exam 2V1

Math 226 Calculus Spring 2016 Exam 2V1 Math 6 Calculus Spring 6 Exam V () (35 Points) Evaluate the following integrals. (a) (7 Points) tan 5 (x) sec 3 (x) dx (b) (8 Points) cos 4 (x) dx Math 6 Calculus Spring 6 Exam V () (Continued) Evaluate

More information

Math 180, Lowman, Summer 2008, Old Exam Problems 1 Limit Problems

Math 180, Lowman, Summer 2008, Old Exam Problems 1 Limit Problems Math 180, Lowman, Summer 2008, Old Exam Problems 1 Limit Problems 1. Find the limit of f(x) = (sin x) x x 3 as x 0. 2. Use L Hopital s Rule to calculate lim x 2 x 3 2x 2 x+2 x 2 4. 3. Given the function

More information

Multiple Choice Answers. MA 113 Calculus I Spring 2018 Exam 2 Tuesday, 6 March Question

Multiple Choice Answers. MA 113 Calculus I Spring 2018 Exam 2 Tuesday, 6 March Question MA 113 Calculus I Spring 2018 Exam 2 Tuesday, 6 March 2018 Name: Section: Last 4 digits of student ID #: This exam has 12 multiple choice questions (five points each) and 4 free response questions (ten

More information

Homework Problem Answers

Homework Problem Answers Homework Problem Answers Integration by Parts. (x + ln(x + x. 5x tan 9x 5 ln sec 9x 9 8 (. 55 π π + 6 ln 4. 9 ln 9 (ln 6 8 8 5. (6 + 56 0/ 6. 6 x sin x +6cos x. ( + x e x 8. 4/e 9. 5 x [sin(ln x cos(ln

More information

Practice Exam I. Summer Term I Kostadinov. MA124 Calculus II Boston University

Practice Exam I. Summer Term I Kostadinov. MA124 Calculus II Boston University student: Practice Exam I Problem 1: Find the derivative of the functions T 1 (x), T 2 (x), T 3 (x). State the reason of your answers. a) T 1 (x) = x 2t dt 2 b) T 2 (x) = e x ln(t2 )dt c) T 3 (x) = x 2

More information

FINAL EXAM CALCULUS 2. Name PRACTICE EXAM SOLUTIONS

FINAL EXAM CALCULUS 2. Name PRACTICE EXAM SOLUTIONS FINAL EXAM CALCULUS MATH 00 FALL 08 Name PRACTICE EXAM SOLUTIONS Please answer all of the questions, and show your work. You must explain your answers to get credit. You will be graded on the clarity of

More information

Calculus 1 Exam 1 MAT 250, Spring 2011 D. Ivanšić. Name: Show all your work!

Calculus 1 Exam 1 MAT 250, Spring 2011 D. Ivanšić. Name: Show all your work! Calculus 1 Exam 1 MAT 250, Spring 2011 D. Ivanšić Name: Show all your work! 1. (16pts) Use the graph of the function to answer the following. Justify your answer if a limit does not exist. lim x 2 f(x)

More information

SECTION A. f(x) = ln(x). Sketch the graph of y = f(x), indicating the coordinates of any points where the graph crosses the axes.

SECTION A. f(x) = ln(x). Sketch the graph of y = f(x), indicating the coordinates of any points where the graph crosses the axes. SECTION A 1. State the maximal domain and range of the function f(x) = ln(x). Sketch the graph of y = f(x), indicating the coordinates of any points where the graph crosses the axes. 2. By evaluating f(0),

More information

Mth Review Problems for Test 2 Stewart 8e Chapter 3. For Test #2 study these problems, the examples in your notes, and the homework.

Mth Review Problems for Test 2 Stewart 8e Chapter 3. For Test #2 study these problems, the examples in your notes, and the homework. For Test # study these problems, the examples in your notes, and the homework. Derivative Rules D [u n ] = nu n 1 du D [ln u] = du u D [log b u] = du u ln b D [e u ] = e u du D [a u ] = a u ln a du D [sin

More information

M GENERAL MATHEMATICS -2- Dr. Tariq A. AlFadhel 1 Solution of the First Mid-Term Exam First semester H

M GENERAL MATHEMATICS -2- Dr. Tariq A. AlFadhel 1 Solution of the First Mid-Term Exam First semester H M 4 - GENERAL MATHEMATICS -- Dr. Tariq A. AlFadhel Solution of the First Mid-Term Exam First semester 435-436 H Q. Let A ( ) 4 and B 3 3 Compute (if possible) : AB and BA ( ) 4 AB 3 3 ( ) ( ) ++ 4+4+ 4

More information

Calculus I Practice Exam 2

Calculus I Practice Exam 2 Calculus I Practice Exam 2 Instructions: The exam is closed book, closed notes, although you may use a note sheet as in the previous exam. A calculator is allowed, but you must show all of your work. Your

More information

MA 114 Worksheet Calendar Fall 2017

MA 114 Worksheet Calendar Fall 2017 MA 4 Worksheet Calendar Fall 7 Thur, Aug 4: Worksheet Integration by parts Tues, Aug 9: Worksheet Partial fractions Thur, Aug 3: Worksheet3 Special trig integrals Tues, Sep 5: Worksheet4 Special trig integrals

More information

Name Class. (a) (b) (c) 4 t4 3 C

Name Class. (a) (b) (c) 4 t4 3 C Chapter 4 Test Bank 77 Test Form A Chapter 4 Name Class Date Section. Evaluate the integral: t dt. t C (a) (b) 4 t4 C t C C t. Evaluate the integral: 5 sec x tan x dx. (a) 5 sec x tan x C (b) 5 sec x C

More information

Distance And Velocity

Distance And Velocity Unit #8 - The Integral Some problems and solutions selected or adapted from Hughes-Hallett Calculus. Distance And Velocity. The graph below shows the velocity, v, of an object (in meters/sec). Estimate

More information

Virginia Tech Math 1226 : Past CTE problems

Virginia Tech Math 1226 : Past CTE problems Virginia Tech Math 16 : Past CTE problems 1. It requires 1 in-pounds of work to stretch a spring from its natural length of 1 in to a length of 1 in. How much additional work (in inch-pounds) is done in

More information

Math 250 Skills Assessment Test

Math 250 Skills Assessment Test Math 5 Skills Assessment Test Page Math 5 Skills Assessment Test The purpose of this test is purely diagnostic (before beginning your review, it will be helpful to assess both strengths and weaknesses).

More information

Friday 09/15/2017 Midterm I 50 minutes

Friday 09/15/2017 Midterm I 50 minutes Fa 17: MATH 2924 040 Differential and Integral Calculus II Noel Brady Friday 09/15/2017 Midterm I 50 minutes Name: Student ID: Instructions. 1. Attempt all questions. 2. Do not write on back of exam sheets.

More information

AP Calculus Chapter 9: Infinite Series

AP Calculus Chapter 9: Infinite Series AP Calculus Chapter 9: Infinite Series 9. Sequences a, a 2, a 3, a 4, a 5,... Sequence: A function whose domain is the set of positive integers n = 2 3 4 a n = a a 2 a 3 a 4 terms of the sequence Begin

More information

Math 229 Mock Final Exam Solution

Math 229 Mock Final Exam Solution Name: Math 229 Mock Final Exam Solution Disclaimer: This mock exam is for practice purposes only. No graphing calulators TI-89 is allowed on this test. Be sure that all of your work is shown and that it

More information

Math 152 Take Home Test 1

Math 152 Take Home Test 1 Math 5 Take Home Test Due Monday 5 th October (5 points) The following test will be done at home in order to ensure that it is a fair and representative reflection of your own ability in mathematics I

More information

Solutions to Math 41 Final Exam December 10, 2012

Solutions to Math 41 Final Exam December 10, 2012 Solutions to Math 4 Final Exam December,. ( points) Find each of the following limits, with justification. If there is an infinite limit, then explain whether it is or. x ln(t + ) dt (a) lim x x (5 points)

More information

Final Examination Solutions

Final Examination Solutions Math. 5, Sections 5 53 (Fulling) 7 December Final Examination Solutions Test Forms A and B were the same except for the order of the multiple-choice responses. This key is based on Form A. Name: Section:

More information

MATH 153 FIRST MIDTERM EXAM

MATH 153 FIRST MIDTERM EXAM NAME: Solutions MATH 53 FIRST MIDTERM EXAM October 2, 2005. Do not open this exam until you are told to begin. 2. This exam has pages including this cover. There are 8 questions. 3. Write your name on

More information

n=0 ( 1)n /(n + 1) converges, but not

n=0 ( 1)n /(n + 1) converges, but not Math 07H Topics for the third exam (and beyond) (Technically, everything covered on the first two exams plus...) Absolute convergence and alternating series A series a n converges absolutely if a n converges.

More information

Calculus I Sample Final exam

Calculus I Sample Final exam Calculus I Sample Final exam Solutions [] Compute the following integrals: a) b) 4 x ln x) Substituting u = ln x, 4 x ln x) = ln 4 ln u du = u ln 4 ln = ln ln 4 Taking common denominator, using properties

More information

Final Exam SOLUTIONS MAT 131 Fall 2011

Final Exam SOLUTIONS MAT 131 Fall 2011 1. Compute the following its. (a) Final Exam SOLUTIONS MAT 131 Fall 11 x + 1 x 1 x 1 The numerator is always positive, whereas the denominator is negative for numbers slightly smaller than 1. Also, as

More information

Mathematics 104 Fall Term 2006 Solutions to Final Exam. sin(ln t) dt = e x sin(x) dx.

Mathematics 104 Fall Term 2006 Solutions to Final Exam. sin(ln t) dt = e x sin(x) dx. Mathematics 14 Fall Term 26 Solutions to Final Exam 1. Evaluate sin(ln t) dt. Solution. We first make the substitution t = e x, for which dt = e x. This gives sin(ln t) dt = e x sin(x). To evaluate the

More information

MATH 10550, EXAM 2 SOLUTIONS. 1. Find an equation for the tangent line to. f(x) = sin x cos x. 2 which is the slope of the tangent line at

MATH 10550, EXAM 2 SOLUTIONS. 1. Find an equation for the tangent line to. f(x) = sin x cos x. 2 which is the slope of the tangent line at MATH 100, EXAM SOLUTIONS 1. Find an equation for the tangent line to at the point ( π 4, 0). f(x) = sin x cos x f (x) = cos(x) + sin(x) Thus, f ( π 4 ) = which is the slope of the tangent line at ( π 4,

More information

Final Exam. V Spring: Calculus I. May 12, 2011

Final Exam. V Spring: Calculus I. May 12, 2011 Name: ID#: Final Exam V.63.0121.2011Spring: Calculus I May 12, 2011 PLEASE READ THE FOLLOWING INFORMATION. This is a 90-minute exam. Calculators, books, notes, and other aids are not allowed. You may use

More information

Practice Final Exam Solutions

Practice Final Exam Solutions Important Notice: To prepare for the final exam, one should study the past exams and practice midterms (and homeworks, quizzes, and worksheets), not just this practice final. A topic not being on the practice

More information

Chapter 5: Integrals

Chapter 5: Integrals Chapter 5: Integrals Section 5.3 The Fundamental Theorem of Calculus Sec. 5.3: The Fundamental Theorem of Calculus Fundamental Theorem of Calculus: Sec. 5.3: The Fundamental Theorem of Calculus Fundamental

More information

Math Practice Final - solutions

Math Practice Final - solutions Math 151 - Practice Final - solutions 2 1-2 -1 0 1 2 3 Problem 1 Indicate the following from looking at the graph of f(x) above. All answers are small integers, ±, or DNE for does not exist. a) lim x 1

More information

PLEASE MARK YOUR ANSWERS WITH AN X, not a circle! 1. (a) (b) (c) (d) (e) 2. (a) (b) (c) (d) (e) (a) (b) (c) (d) (e) 4. (a) (b) (c) (d) (e)...

PLEASE MARK YOUR ANSWERS WITH AN X, not a circle! 1. (a) (b) (c) (d) (e) 2. (a) (b) (c) (d) (e) (a) (b) (c) (d) (e) 4. (a) (b) (c) (d) (e)... Math, Exam III November 6, 7 The Honor Code is in effect for this examination. All work is to be your own. No calculators. The exam lasts for hour and min. Be sure that your name is on every page in case

More information

1. Taylor Polynomials of Degree 1: Linear Approximation. Reread Example 1.

1. Taylor Polynomials of Degree 1: Linear Approximation. Reread Example 1. Math 114, Taylor Polynomials (Section 10.1) Name: Section: Read Section 10.1, focusing on pages 58-59. Take notes in your notebook, making sure to include words and phrases in italics and formulas in blue

More information

3. On the grid below, sketch and label graphs of the following functions: y = sin x, y = cos x, and y = sin(x π/2). π/2 π 3π/2 2π 5π/2

3. On the grid below, sketch and label graphs of the following functions: y = sin x, y = cos x, and y = sin(x π/2). π/2 π 3π/2 2π 5π/2 AP Physics C Calculus C.1 Name Trigonometric Functions 1. Consider the right triangle to the right. In terms of a, b, and c, write the expressions for the following: c a sin θ = cos θ = tan θ =. Using

More information

Math 181, Exam 2, Study Guide 2 Problem 1 Solution. 1 + dx. 1 + (cos x)2 dx. 1 + cos2 xdx. = π ( 1 + cos π 2

Math 181, Exam 2, Study Guide 2 Problem 1 Solution. 1 + dx. 1 + (cos x)2 dx. 1 + cos2 xdx. = π ( 1 + cos π 2 Math 8, Exam, Study Guide Problem Solution. Use the trapezoid rule with n to estimate the arc-length of the curve y sin x between x and x π. Solution: The arclength is: L b a π π + ( ) dy + (cos x) + cos

More information

Practice Final Exam Solutions

Practice Final Exam Solutions Important Notice: To prepare for the final exam, study past exams and practice exams, and homeworks, quizzes, and worksheets, not just this practice final. A topic not being on the practice final does

More information

Differentiation Review, Part 1 (Part 2 follows; there are answers at the end of each part.)

Differentiation Review, Part 1 (Part 2 follows; there are answers at the end of each part.) Differentiation Review 1 Name Differentiation Review, Part 1 (Part 2 follows; there are answers at the end of each part.) Derivatives Review: Summary of Rules Each derivative rule is summarized for you

More information

MATH 20B MIDTERM #2 REVIEW

MATH 20B MIDTERM #2 REVIEW MATH 20B MIDTERM #2 REVIEW FORMAT OF MIDTERM #2 The format will be the same as the practice midterms. There will be six main questions worth 0 points each. These questions will be similar to problems you

More information

Calculus 1 Exam 1 MAT 250, Spring 2012 D. Ivanšić. Name: Show all your work!

Calculus 1 Exam 1 MAT 250, Spring 2012 D. Ivanšić. Name: Show all your work! Calculus 1 Exam 1 MAT 250, Spring 2012 D. Ivanšić Name: Show all your work! 1. (16pts) Use the graph of the function to answer the following. Justify your answer if a limit does not exist. lim x 1 f(x)

More information

5 Integrals reviewed Basic facts U-substitution... 4

5 Integrals reviewed Basic facts U-substitution... 4 Contents 5 Integrals reviewed 5. Basic facts............................... 5.5 U-substitution............................. 4 6 Integral Applications 0 6. Area between two curves.......................

More information

f(r) = (r 1/2 r 1/2 ) 3 u = (ln t) ln t ln u = (ln t)(ln (ln t)) t(ln t) g (t) = t

f(r) = (r 1/2 r 1/2 ) 3 u = (ln t) ln t ln u = (ln t)(ln (ln t)) t(ln t) g (t) = t Math 4, Autumn 006 Final Exam Solutions Page of 9. [ points total] Calculate the derivatives of the following functions. You need not simplfy your answers. (a) [4 points] y = 5x 7 sin(3x) + e + ln x. y

More information

x 2 y = 1 2. Problem 2. Compute the Taylor series (at the base point 0) for the function 1 (1 x) 3.

x 2 y = 1 2. Problem 2. Compute the Taylor series (at the base point 0) for the function 1 (1 x) 3. MATH 8.0 - FINAL EXAM - SOME REVIEW PROBLEMS WITH SOLUTIONS 8.0 Calculus, Fall 207 Professor: Jared Speck Problem. Consider the following curve in the plane: x 2 y = 2. Let a be a number. The portion of

More information

b n x n + b n 1 x n b 1 x + b 0

b n x n + b n 1 x n b 1 x + b 0 Math Partial Fractions Stewart 7.4 Integrating basic rational functions. For a function f(x), we have examined several algebraic methods for finding its indefinite integral (antiderivative) F (x) = f(x)

More information

Math 1552: Integral Calculus Final Exam Study Guide, Spring 2018

Math 1552: Integral Calculus Final Exam Study Guide, Spring 2018 Math 55: Integral Calculus Final Exam Study Guide, Spring 08 PART : Concept Review (Note: concepts may be tested on the exam in the form of true/false or short-answer questions.). Complete each statement

More information

Practice Exam 1 Solutions

Practice Exam 1 Solutions Practice Exam 1 Solutions 1a. Let S be the region bounded by y = x 3, y = 1, and x. Find the area of S. What is the volume of the solid obtained by rotating S about the line y = 1? Area A = Volume 1 1

More information

Integrated Calculus II Exam 1 Solutions 2/6/4

Integrated Calculus II Exam 1 Solutions 2/6/4 Integrated Calculus II Exam Solutions /6/ Question Determine the following integrals: te t dt. We integrate by parts: u = t, du = dt, dv = e t dt, v = dv = e t dt = e t, te t dt = udv = uv vdu = te t (

More information

The Princeton Review AP Calculus BC Practice Test 1

The Princeton Review AP Calculus BC Practice Test 1 8 The Princeton Review AP Calculus BC Practice Test CALCULUS BC SECTION I, Part A Time 55 Minutes Number of questions 8 A CALCULATOR MAY NOT BE USED ON THIS PART OF THE EXAMINATION Directions: Solve each

More information

Math 190 (Calculus II) Final Review

Math 190 (Calculus II) Final Review Math 90 (Calculus II) Final Review. Sketch the region enclosed by the given curves and find the area of the region. a. y = 7 x, y = x + 4 b. y = cos ( πx ), y = x. Use the specified method to find the

More information

Part I: Multiple Choice Mark the correct answer on the bubble sheet provided. n=1. a) None b) 1 c) 2 d) 3 e) 1, 2 f) 1, 3 g) 2, 3 h) 1, 2, 3

Part I: Multiple Choice Mark the correct answer on the bubble sheet provided. n=1. a) None b) 1 c) 2 d) 3 e) 1, 2 f) 1, 3 g) 2, 3 h) 1, 2, 3 Math (Calculus II) Final Eam Form A Fall 22 RED KEY Part I: Multiple Choice Mark the correct answer on the bubble sheet provided.. Which of the following series converge absolutely? ) ( ) n 2) n 2 n (

More information

MAT 1320 Study Sheet for the final exam. Format. Topics

MAT 1320 Study Sheet for the final exam. Format. Topics MAT 1320 Study Sheet for the final exam August 2015 Format The exam consists of 10 Multiple Choice questions worth 1 point each, and 5 Long Answer questions worth 30 points in total. Please make sure that

More information

Old Math 220 Exams. David M. McClendon. Department of Mathematics Ferris State University

Old Math 220 Exams. David M. McClendon. Department of Mathematics Ferris State University Old Math 0 Exams David M. McClendon Department of Mathematics Ferris State University Last updated to include exams from Spring 05 Contents Contents General information about these exams 4 Exams from 0

More information

Math 181, Exam 1, Study Guide 2 Problem 1 Solution. =[17ln 5 +3(5)] [17 ln 1 +3(1)] =17ln = 17ln5+12

Math 181, Exam 1, Study Guide 2 Problem 1 Solution. =[17ln 5 +3(5)] [17 ln 1 +3(1)] =17ln = 17ln5+12 Math 8, Exam, Study Guide Problem Solution. Compute the definite integral: 5 ( ) 7 x +3 dx Solution: UsingtheFundamentalTheoremofCalculusPartI,thevalueof the integral is: 5 ( ) 7 [ ] 5 x +3 dx = 7 ln x

More information

(x 3)(x + 5) = (x 3)(x 1) = x + 5. sin 2 x e ax bx 1 = 1 2. lim

(x 3)(x + 5) = (x 3)(x 1) = x + 5. sin 2 x e ax bx 1 = 1 2. lim SMT Calculus Test Solutions February, x + x 5 Compute x x x + Answer: Solution: Note that x + x 5 x x + x )x + 5) = x )x ) = x + 5 x x + 5 Then x x = + 5 = Compute all real values of b such that, for fx)

More information

Fall 2016, MA 252, Calculus II, Final Exam Preview Solutions

Fall 2016, MA 252, Calculus II, Final Exam Preview Solutions Fall 6, MA 5, Calculus II, Final Exam Preview Solutions I will put the following formulas on the front of the final exam, to speed up certain problems. You do not need to put them on your index card, and

More information

M152: Calculus II Midterm Exam Review

M152: Calculus II Midterm Exam Review M52: Calculus II Midterm Exam Review Chapter 4. 4.2 : Mean Value Theorem. - Know the statement and idea of Mean Value Theorem. - Know how to find values of c making the theorem true. - Realize the importance

More information

MA 114 Worksheet # 1: Improper Integrals

MA 114 Worksheet # 1: Improper Integrals MA 4 Worksheet # : Improper Integrals. For each of the following, determine if the integral is proper or improper. If it is improper, explain why. Do not evaluate any of the integrals. (c) 2 0 2 2 x x

More information

Math 116 Final Exam December 17, 2010

Math 116 Final Exam December 17, 2010 Math 116 Final Exam December 17, 2010 Name: Instructor: Section: 1. Do not open this exam until you are told to do so. 2. This exam has 11 pages including this cover. There are 9 problems. Note that the

More information

Chapter 12 Overview: Review of All Derivative Rules

Chapter 12 Overview: Review of All Derivative Rules Chapter 12 Overview: Review of All Derivative Rules The emphasis of the previous chapters was graphing the families of functions as they are viewed (mostly) in Analytic Geometry, that is, with traits.

More information

Mathematics 1052, Calculus II Exam 1, April 3rd, 2010

Mathematics 1052, Calculus II Exam 1, April 3rd, 2010 Mathematics 5, Calculus II Exam, April 3rd,. (8 points) If an unknown function y satisfies the equation y = x 3 x + 4 with the condition that y()=, then what is y? Solution: We must integrate y against

More information

Mathematics 1 Lecture Notes Chapter 1 Algebra Review

Mathematics 1 Lecture Notes Chapter 1 Algebra Review Mathematics 1 Lecture Notes Chapter 1 Algebra Review c Trinity College 1 A note to the students from the lecturer: This course will be moving rather quickly, and it will be in your own best interests to

More information

Name: Answer Key David Arnold. Math 50B Integral Calculus May 13, Final Exam

Name: Answer Key David Arnold. Math 50B Integral Calculus May 13, Final Exam Math 5B Integral Calculus May 3, 7 Final Exam Name: Answer Key David Arnold Instructions. (9 points) Follow the directions exactly! Whatever you are asked to do, you must do to receive full credit for

More information

MATH 101: PRACTICE MIDTERM 2

MATH 101: PRACTICE MIDTERM 2 MATH : PRACTICE MIDTERM INSTRUCTOR: PROF. DRAGOS GHIOCA March 7, Duration of examination: 7 minutes This examination includes pages and 6 questions. You are responsible for ensuring that your copy of the

More information

Turn off all cell phones, pagers, radios, mp3 players, and other similar devices.

Turn off all cell phones, pagers, radios, mp3 players, and other similar devices. Math 25 B and C Midterm 2 Palmieri, Autumn 26 Your Name Your Signature Student ID # TA s Name and quiz section (circle): Cady Cruz Jacobs BA CB BB BC CA CC Turn off all cell phones, pagers, radios, mp3

More information

Math 113 (Calculus 2) Exam 4

Math 113 (Calculus 2) Exam 4 Math 3 (Calculus ) Exam 4 November 0 November, 009 Sections 0, 3 7 Name Student ID Section Instructor In some cases a series may be seen to converge or diverge for more than one reason. For such problems

More information

Formulas that must be memorized:

Formulas that must be memorized: Formulas that must be memorized: Position, Velocity, Acceleration Speed is increasing when v(t) and a(t) have the same signs. Speed is decreasing when v(t) and a(t) have different signs. Section I: Limits

More information

MATH 151, FALL SEMESTER 2011 COMMON EXAMINATION 3 - VERSION B - SOLUTIONS

MATH 151, FALL SEMESTER 2011 COMMON EXAMINATION 3 - VERSION B - SOLUTIONS Name (print): Signature: MATH 5, FALL SEMESTER 0 COMMON EXAMINATION - VERSION B - SOLUTIONS Instructor s name: Section No: Part Multiple Choice ( questions, points each, No Calculators) Write your name,

More information