61A Extra Lecture 13

Size: px
Start display at page:

Download "61A Extra Lecture 13"

Transcription

1 61A Extra Lecture 13

2 Announcements

3 Prediction

4 Regression 4

5 Regression Given a set of (x, y) pairs, find a function f(x) that returns good y values 4

6 Regression Given a set of (x, y) pairs, find a function f(x) that returns good y values pairs = [(64.75, 163.5), (63.75, 147.5), (72.5, 224),...] 4

7 Regression Given a set of (x, y) pairs, find a function f(x) that returns good y values pairs = [(64.75, 163.5), (63.75, 147.5), (72.5, 224),...] Data from a health survey of 6342 adults 4

8 Regression Given a set of (x, y) pairs, find a function f(x) that returns good y values pairs = [(64.75, 163.5), (63.75, 147.5), (72.5, 224),...] Height in inches: 5 feet 4¾ inches Data from a health survey of 6342 adults 4

9 Regression Given a set of (x, y) pairs, find a function f(x) that returns good y values pairs = [(64.75, 163.5), (63.75, 147.5), (72.5, 224),...] Height in inches: 5 feet 4¾ inches Weight in pounds Data from a health survey of 6342 adults 4

10 Regression Given a set of (x, y) pairs, find a function f(x) that returns good y values pairs = [(64.75, 163.5), (63.75, 147.5), (72.5, 224),...] Height in inches: 5 feet 4¾ inches Weight in pounds Data from a health survey of 6342 adults Measuring error: y-f(x) or (f(x)-y) 2 are both typical 4

11 Regression Given a set of (x, y) pairs, find a function f(x) that returns good y values pairs = [(64.75, 163.5), (63.75, 147.5), (72.5, 224),...] Height in inches: 5 feet 4¾ inches Weight in pounds Data from a health survey of 6342 adults Measuring error: y-f(x) or (f(x)-y) 2 are both typical Over the whole set of (x, y) pairs, we can average this "squared error" 4

12 Regression Given a set of (x, y) pairs, find a function f(x) that returns good y values pairs = [(64.75, 163.5), (63.75, 147.5), (72.5, 224),...] Height in inches: 5 feet 4¾ inches Weight in pounds Data from a health survey of 6342 adults Measuring error: y-f(x) or (f(x)-y) 2 are both typical Over the whole set of (x, y) pairs, we can average this "squared error" Squared error has the wrong units, so it's common to take the square root 4

13 Regression Given a set of (x, y) pairs, find a function f(x) that returns good y values pairs = [(64.75, 163.5), (63.75, 147.5), (72.5, 224),...] Height in inches: 5 feet 4¾ inches Weight in pounds Data from a health survey of 6342 adults Measuring error: y-f(x) or (f(x)-y) 2 are both typical Over the whole set of (x, y) pairs, we can average this "squared error" Squared error has the wrong units, so it's common to take the square root The result is the "root mean squared error" of a predictor f on a set of (x, y) pairs 4

14 Regression Given a set of (x, y) pairs, find a function f(x) that returns good y values pairs = [(64.75, 163.5), (63.75, 147.5), (72.5, 224),...] Height in inches: 5 feet 4¾ inches Weight in pounds Data from a health survey of 6342 adults Measuring error: y-f(x) or (f(x)-y) 2 are both typical Over the whole set of (x, y) pairs, we can average this "squared error" Squared error has the wrong units, so it's common to take the square root The result is the "root mean squared error" of a predictor f on a set of (x, y) pairs (Demo) 4

15 Purpose of Newton's Method Quickly finds accurate approximations to zeroes of differentiable functions! 5

16 Purpose of Newton's Method Quickly finds accurate approximations to zeroes of differentiable functions! f(x) = x 2-2 5

17 Purpose of Newton's Method Quickly finds accurate approximations to zeroes of differentiable functions! 2.5 f(x) = x

18 Purpose of Newton's Method Quickly finds accurate approximations to zeroes of differentiable functions! 2.5 f(x) = x 2-2 A "zero" of a function f is an input x such that f(x)=

19 Purpose of Newton's Method Quickly finds accurate approximations to zeroes of differentiable functions! 2.5 f(x) = x 2-2 A "zero" of a function f is an input x such that f(x)= x=

20 Purpose of Newton's Method Quickly finds accurate approximations to zeroes of differentiable functions! 2.5 f(x) = x 2-2 A "zero" of a function f is an input x such that f(x)= x= Application: Find the minimum of a function by finding the zero of its derivative 5

21 Approximate Differentiation 6

22 Approximate Differentiation 6

23 Approximate Differentiation Differentiation can be performed symbolically or numerically 6

24 Approximate Differentiation Differentiation can be performed symbolically or numerically f(x) = x

25 Approximate Differentiation Differentiation can be performed symbolically or numerically f(x) = x 2-16 f'(x) = 2x 6

26 Approximate Differentiation Differentiation can be performed symbolically or numerically f(x) = x 2-16 f'(x) = 2x f'(2) = 4 6

27 Approximate Differentiation Differentiation can be performed symbolically or numerically f(x) = x 2-16 f'(x) = 2x f'(2) = 4 6

28 Approximate Differentiation Differentiation can be performed symbolically or numerically f(x) = x 2-16 f'(x) = 2x f'(2) = 4 f 0 (x) =lim a!0 f(x + a) f(x) a 6

29 Approximate Differentiation Differentiation can be performed symbolically or numerically f(x) = x 2-16 f'(x) = 2x f'(2) = 4 f 0 (x) =lim a!0 f(x + a) f(x) a f 0 (x) f(x + a) f(x) a 6

30 Approximate Differentiation Differentiation can be performed symbolically or numerically f(x) = x 2-16 f'(x) = 2x f'(2) = 4 f 0 (x) =lim a!0 f(x + a) f(x) a f 0 (x) f(x + a) f(x) a (if a is small) 6

31 Approximate Differentiation Differentiation can be performed symbolically or numerically f(x) = x 2-16 f'(x) = 2x f'(2) = 4 f 0 (x) =lim a!0 f(x + a) f(x) a f 0 (x) f(x + a) f(x) a (if a is small) 6

32 Approximate Differentiation Differentiation can be performed symbolically or numerically f(x) = x 2-16 f'(x) = 2x f'(2) = 4 f 0 (x) =lim a!0 f(x + a) f(x) a f 0 (x) f(x + a) f(x) a (if a is small) 6

33 Critical Points and Inverses 7

34 Critical Points and Inverses Maxima, minima, and inflection points of a differentiable function occur when the derivative is 0 7

35 Critical Points and Inverses Maxima, minima, and inflection points of a differentiable function occur when the derivative is 0 7

36 Critical Points and Inverses Maxima, minima, and inflection points of a differentiable function occur when the derivative is 0 The global minimum of convex functions that are (mostly) twice-differentiable can be computed numerically using techniques that are similar to Newton's method 7

37 Critical Points and Inverses Maxima, minima, and inflection points of a differentiable function occur when the derivative is 0 The global minimum of convex functions that are (mostly) twice-differentiable can be computed numerically using techniques that are similar to Newton's method (Demo) 7

38 Multiple Linear Regression Given a set of (xs, y) pairs, find a linear function f(xs) that returns good y values 8

39 Multiple Linear Regression Given a set of (xs, y) pairs, find a linear function f(xs) that returns good y values A linear function has the form w xs + b for vectors w and xs and scalar b 8

40 Multiple Linear Regression Given a set of (xs, y) pairs, find a linear function f(xs) that returns good y values A linear function has the form w xs + b for vectors w and xs and scalar b (Demo) 8

41 Multiple Linear Regression Given a set of (xs, y) pairs, find a linear function f(xs) that returns good y values A linear function has the form w xs + b for vectors w and xs and scalar b (Demo) Note: Root mean squared error can be optimized through linear algebra alone, but numerical optimization works for a much larger class of related error measures 8

42 Classification

43 Classification 10

44 Classification When the output of prediction is a category instead of a quantity, prediction is called classification instead of regression 10

45 Classification When the output of prediction is a category instead of a quantity, prediction is called classification instead of regression The approach is basically the same, except that the output is coerced into a category 10

46 Classification When the output of prediction is a category instead of a quantity, prediction is called classification instead of regression The approach is basically the same, except that the output is coerced into a category Error is measured by accuracy: the proportion of categorical predictions that were correct 10

47 Classification When the output of prediction is a category instead of a quantity, prediction is called classification instead of regression The approach is basically the same, except that the output is coerced into a category Error is measured by accuracy: the proportion of categorical predictions that were correct (Demo) 10

48 Loss Functions 11

49 Loss Functions (2*y-1) * (w xs + b - 0.5) How close to being right/wrong 11

50 Loss Functions Changes (0, 1) to (-1, 1) (2*y-1) * (w xs + b - 0.5) How close to being right/wrong 11

51 Loss Functions Changes (0, 1) to (-1, 1) Shifts choice to 0 from 0.5 (2*y-1) * (w xs + b - 0.5) How close to being right/wrong 11

52 Loss Functions Loss used for accuracy evaluation Changes (0, 1) to (-1, 1) Shifts choice to 0 from 0.5 (2*y-1) * (w xs + b - 0.5) How close to being right/wrong 11

53 Loss Functions Loss used for accuracy evaluation Correct, but almost wrong Changes (0, 1) to (-1, 1) Shifts choice to 0 from 0.5 (2*y-1) * (w xs + b - 0.5) How close to being right/wrong 11

54 Loss Functions Linear regression (min squared error) Loss used for accuracy evaluation Correct, but almost wrong Changes (0, 1) to (-1, 1) Shifts choice to 0 from 0.5 (2*y-1) * (w xs + b - 0.5) How close to being right/wrong 11

55 Language Models

56 Natural Language Can Be Predicted 13

57 Natural Language Can Be Predicted Programs should be written fur people two read. 13

58 Natural Language Can Be Predicted for Programs should be written fur people two read. 13

59 Natural Language Can Be Predicted for to Programs should be written fur people two read. 13

60 Natural Language Can Be Predicted for Programs should be written fur people two read. to X 13

61 Natural Language Can Be Predicted for Programs should be written fur people two read. to X Y 13

62 Natural Language Can Be Predicted for Programs should be written fur people two read. to X Y "should be written for": 1 13

63 Natural Language Can Be Predicted for Programs should be written fur people two read. to X Y "should be written for": 1 "be written for": 1 13

64 Natural Language Can Be Predicted for Programs should be written fur people two read. to X Y "should be written for": 1 "be written for": 1 "written for": 1 13

65 Natural Language Can Be Predicted for Programs should be written fur people two read. to X Y "should be written for": 1 "be written for": 1 "written for": 1 "for": 1 13

66 Natural Language Can Be Predicted for Programs should be written fur people two read. to X Y "should be written for": 1 "be written for": 1 "written for": 1 "for": 1 "nice computer": 0 13

67 Natural Language Can Be Predicted for Programs should be written fur people two read. to X Y "should be written for": 1 "be written for": 1 "written for": 1 "for": 1 "nice computer": 0 (Demo) 13

2 2 + x =

2 2 + x = Lecture 30: Power series A Power Series is a series of the form c n = c 0 + c 1 x + c x + c 3 x 3 +... where x is a variable, the c n s are constants called the coefficients of the series. n = 1 + x +

More information

Sections 4.1 & 4.2: Using the Derivative to Analyze Functions

Sections 4.1 & 4.2: Using the Derivative to Analyze Functions Sections 4.1 & 4.2: Using the Derivative to Analyze Functions f (x) indicates if the function is: Increasing or Decreasing on certain intervals. Critical Point c is where f (c) = 0 (tangent line is horizontal),

More information

f (x) = 2x x = 2x2 + 4x 6 x 0 = 2x 2 + 4x 6 = 2(x + 3)(x 1) x = 3 or x = 1.

f (x) = 2x x = 2x2 + 4x 6 x 0 = 2x 2 + 4x 6 = 2(x + 3)(x 1) x = 3 or x = 1. F16 MATH 15 Test November, 016 NAME: SOLUTIONS CRN: Use only methods from class. You must show work to receive credit. When using a theorem given in class, cite the theorem. Reminder: Calculators are not

More information

sketching Jan 22, 2015 Calculus with Algebra and Trigonometry II Lecture 2Maxima andjan minima, 22, 2015 convexity/concav 1 / 15

sketching Jan 22, 2015 Calculus with Algebra and Trigonometry II Lecture 2Maxima andjan minima, 22, 2015 convexity/concav 1 / 15 Calculus with Algebra and Trigonometry II Lecture 2 Maxima and minima, convexity/concavity, and curve sketching Jan 22, 2015 Calculus with Algebra and Trigonometry II Lecture 2Maxima andjan minima, 22,

More information

Mathematics Lecture. 6 Chapter. 4 APPLICATIONS OF DERIVATIVES. By Dr. Mohammed Ramidh

Mathematics Lecture. 6 Chapter. 4 APPLICATIONS OF DERIVATIVES. By Dr. Mohammed Ramidh Mathematics Lecture. 6 Chapter. 4 APPLICATIONS OF DERIVATIVES By Dr. Mohammed Ramidh OVERVIEW: This chapter studies some of the important applications of derivatives. We learn how derivatives are used

More information

1 Newton s Method. Suppose we want to solve: x R. At x = x, f (x) can be approximated by:

1 Newton s Method. Suppose we want to solve: x R. At x = x, f (x) can be approximated by: Newton s Method Suppose we want to solve: (P:) min f (x) At x = x, f (x) can be approximated by: n x R. f (x) h(x) := f ( x)+ f ( x) T (x x)+ (x x) t H ( x)(x x), 2 which is the quadratic Taylor expansion

More information

Name: Instructor: 1. a b c d e. 15. a b c d e. 2. a b c d e a b c d e. 16. a b c d e a b c d e. 4. a b c d e... 5.

Name: Instructor: 1. a b c d e. 15. a b c d e. 2. a b c d e a b c d e. 16. a b c d e a b c d e. 4. a b c d e... 5. Name: Instructor: Math 155, Practice Final Exam, December The Honor Code is in effect for this examination. All work is to be your own. No calculators. The exam lasts for 2 hours. Be sure that your name

More information

Calculus 221 worksheet

Calculus 221 worksheet Calculus 221 worksheet Graphing A function has a global maximum at some a in its domain if f(x) f(a) for all other x in the domain of f. Global maxima are sometimes also called absolute maxima. A function

More information

MAPLE Worksheet Number 7 Derivatives in Calculus

MAPLE Worksheet Number 7 Derivatives in Calculus MAPLE Worksheet Number 7 Derivatives in Calculus The MAPLE command for computing the derivative of a function depends on which of the two ways we used to define the function, as a symbol or as an operation.

More information

Student Study Session Topic: Interpreting Graphs

Student Study Session Topic: Interpreting Graphs Student Study Session Topic: Interpreting Graphs Starting with the graph of a function or its derivative, you may be asked all kinds of questions without having (or needing) and equation to work with.

More information

What do derivatives tell us about functions?

What do derivatives tell us about functions? What do derivatives tell us about functions? Math 102 Section 106 Cole Zmurchok October 3, 2016 Announcements New & Improved Anonymous Feedback Form: https://goo.gl/forms/jj3xwycafxgfzerr2 (Link on Section

More information

MIDTERM 2 REVIEW: ADDITIONAL PROBLEMS. 1 2 x + 1. y = + 1 = x 1/ = 1. y = 1 2 x 3/2 = 1. into this equation would have then given. y 1.

MIDTERM 2 REVIEW: ADDITIONAL PROBLEMS. 1 2 x + 1. y = + 1 = x 1/ = 1. y = 1 2 x 3/2 = 1. into this equation would have then given. y 1. MIDTERM 2 REVIEW: ADDITIONAL PROBLEMS ) If x + y =, find y. IMPLICIT DIFFERENTIATION Solution. Taking the derivative (with respect to x) of both sides of the given equation, we find that 2 x + 2 y y =

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Calculus 1 Instructor: James Lee Practice Exam 3 Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Determine from the graph whether the function

More information

Math 112 (Calculus I) Midterm Exam 3 KEY

Math 112 (Calculus I) Midterm Exam 3 KEY Math 11 (Calculus I) Midterm Exam KEY Multiple Choice. Fill in the answer to each problem on your computer scored answer sheet. Make sure your name, section and instructor are on that sheet. 1. Which of

More information

Review of the General Linear Model

Review of the General Linear Model Review of the General Linear Model EPSY 905: Multivariate Analysis Online Lecture #2 Learning Objectives Types of distributions: Ø Conditional distributions The General Linear Model Ø Regression Ø Analysis

More information

Note: A file Algebra Unit 09 Practice X Patterns can be useful to prepare students to quickly find sum and product.

Note: A file Algebra Unit 09 Practice X Patterns can be useful to prepare students to quickly find sum and product. Note: This unit can be used as needed (review or introductory) to practice operations on polynomials. Math Background Previously, you Identified monomials and their characteristics Applied the laws of

More information

Review for Final. The final will be about 20% from chapter 2, 30% from chapter 3, and 50% from chapter 4. Below are the topics to study:

Review for Final. The final will be about 20% from chapter 2, 30% from chapter 3, and 50% from chapter 4. Below are the topics to study: Review for Final The final will be about 20% from chapter 2, 30% from chapter 3, and 50% from chapter 4. Below are the topics to study: Chapter 2 Find the exact answer to a limit question by using the

More information

Mathematical Economics: Lecture 3

Mathematical Economics: Lecture 3 Mathematical Economics: Lecture 3 Yu Ren WISE, Xiamen University October 7, 2012 Outline 1 Example of Graphing Example 3.1 Consider the cubic function f (x) = x 3 3x. Try to graph this function Example

More information

WEEK 8. CURVE SKETCHING. 1. Concavity

WEEK 8. CURVE SKETCHING. 1. Concavity WEEK 8. CURVE SKETCHING. Concavity Definition. (Concavity). The graph of a function y = f(x) is () concave up on an interval I if for any two points a, b I, the straight line connecting two points (a,

More information

MATH 1241 FINAL EXAM FALL 2012 Part I, No Calculators Allowed

MATH 1241 FINAL EXAM FALL 2012 Part I, No Calculators Allowed MATH 11 FINAL EXAM FALL 01 Part I, No Calculators Allowed 1. Evaluate the limit: lim x x x + x 1. (a) 0 (b) 0.5 0.5 1 Does not exist. Which of the following is the derivative of g(x) = x cos(3x + 1)? (a)

More information

MATH 205 Practice Final Exam Name:

MATH 205 Practice Final Exam Name: Name: This test is closed-book and closed-notes. No calculator is allowed for this test. For full credit show all of your work (legibly!), unless otherwise specified. For the purposes of this exam, all

More information

AP Calculus BC Chapter 4 AP Exam Problems A) 4 B) 2 C) 1 D) 0 E) 2 A) 9 B) 12 C) 14 D) 21 E) 40

AP Calculus BC Chapter 4 AP Exam Problems A) 4 B) 2 C) 1 D) 0 E) 2 A) 9 B) 12 C) 14 D) 21 E) 40 Extreme Values in an Interval AP Calculus BC 1. The absolute maximum value of x = f ( x) x x 1 on the closed interval, 4 occurs at A) 4 B) C) 1 D) 0 E). The maximum acceleration attained on the interval

More information

1S11: Calculus for students in Science

1S11: Calculus for students in Science 1S11: Calculus for students in Science Dr. Vladimir Dotsenko TCD Lecture 21 Dr. Vladimir Dotsenko (TCD) 1S11: Calculus for students in Science Lecture 21 1 / 1 An important announcement There will be no

More information

2015 Math Camp Calculus Exam Solution

2015 Math Camp Calculus Exam Solution 015 Math Camp Calculus Exam Solution Problem 1: x = x x +5 4+5 = 9 = 3 1. lim We also accepted ±3, even though it is not according to the prevailing convention 1. x x 4 x+4 =. lim 4 4+4 = 4 0 = 4 0 = We

More information

Math 241 Final Exam, Spring 2013

Math 241 Final Exam, Spring 2013 Math 241 Final Exam, Spring 2013 Name: Section number: Instructor: Read all of the following information before starting the exam. Question Points Score 1 5 2 5 3 12 4 10 5 17 6 15 7 6 8 12 9 12 10 14

More information

Lecture 4: Optimization. Maximizing a function of a single variable

Lecture 4: Optimization. Maximizing a function of a single variable Lecture 4: Optimization Maximizing or Minimizing a Function of a Single Variable Maximizing or Minimizing a Function of Many Variables Constrained Optimization Maximizing a function of a single variable

More information

Section 5-1 First Derivatives and Graphs

Section 5-1 First Derivatives and Graphs Name Date Class Section 5-1 First Derivatives and Graphs Goal: To use the first derivative to analyze graphs Theorem 1: Increasing and Decreasing Functions For the interval (a,b), if f '( x ) > 0, then

More information

Algebra Performance Level Descriptors

Algebra Performance Level Descriptors Limited A student performing at the Limited Level demonstrates a minimal command of Ohio s Learning Standards for Algebra. A student at this level has an emerging ability to A student whose performance

More information

LECTURE 1: LINES IN R 3

LECTURE 1: LINES IN R 3 LECTURE 1: LINES IN R 3 DAGAN KARP ABSTRACT. In this first lecture, we ll review some necessary material and notation from linear algebra, and begin to explore geometry in R 3. In particular, we ll study

More information

1 Lecture 25: Extreme values

1 Lecture 25: Extreme values 1 Lecture 25: Extreme values 1.1 Outline Absolute maximum and minimum. Existence on closed, bounded intervals. Local extrema, critical points, Fermat s theorem Extreme values on a closed interval Rolle

More information

Honors Algebra 2 Final Exam 2002

Honors Algebra 2 Final Exam 2002 Honors Algebra 2 Final Exam 2002 Name PART A. MULTIPLE CHOICE. Circle the letter in front of each correct answer. You do not have to show work. There is no partial credit. EACH PROBLEM IN THIS SECTION

More information

MA Practice Exam #2 Solutions

MA Practice Exam #2 Solutions MA 123 - Practice Exam #2 Solutions Name: Instructions: For some of the questions, you must show all your work as indicated. No calculators, books or notes of any form are allowed. Note that the questions

More information

MTH4100 Calculus I. Bill Jackson School of Mathematical Sciences QMUL. Week 9, Semester 1, 2013

MTH4100 Calculus I. Bill Jackson School of Mathematical Sciences QMUL. Week 9, Semester 1, 2013 MTH4100 School of Mathematical Sciences QMUL Week 9, Semester 1, 2013 Concavity Concavity In the literature concave up is often referred to as convex, and concave down is simply called concave. The second

More information

Math 120 Final Exam Practice Problems, Form: A

Math 120 Final Exam Practice Problems, Form: A Math 120 Final Exam Practice Problems, Form: A Name: While every attempt was made to be complete in the types of problems given below, we make no guarantees about the completeness of the problems. Specifically,

More information

Announcements. Topics: Homework: - sections , 6.1 (extreme values) * Read these sections and study solved examples in your textbook!

Announcements. Topics: Homework: - sections , 6.1 (extreme values) * Read these sections and study solved examples in your textbook! Announcements Topics: - sections 5.2 5.7, 6.1 (extreme values) * Read these sections and study solved examples in your textbook! Homework: - review lecture notes thoroughly - work on practice problems

More information

MATH 115 QUIZ4-SAMPLE December 7, 2016

MATH 115 QUIZ4-SAMPLE December 7, 2016 MATH 115 QUIZ4-SAMPLE December 7, 2016 Please review the following problems from your book: Section 4.1: 11 ( true and false) Section 4.1: 49-70 ( Using table or number line.) Section 4.2: 77-83 Section

More information

Quick Review Sheet for A.P. Calculus Exam

Quick Review Sheet for A.P. Calculus Exam Quick Review Sheet for A.P. Calculus Exam Name AP Calculus AB/BC Limits Date Period 1. Definition: 2. Steps in Evaluating Limits: - Substitute, Factor, and Simplify 3. Limits as x approaches infinity If

More information

FINAL EXAMINATION, MAT 2010 December 12, Cell phones are strictly prohibited!

FINAL EXAMINATION, MAT 2010 December 12, Cell phones are strictly prohibited! FINAL EXAMINATION, MAT 00 December, 03 Write your solutions in a blue book. To receive full credit you must show all work. You are allowed to use an approved graphing calculator unless otherwise indicated.

More information

Two hours UNIVERSITY OF MANCHESTER. 21 January

Two hours UNIVERSITY OF MANCHESTER. 21 January Two hours MATH20111 UNIVERSITY OF MANCHESTER REAL ANALYSIS 21 January 2015 09.45 11.45 Answer ALL SIX questions in Section A (50 marks in total). Answer TWO of the THREE questions in Section B (30 marks

More information

MATH 2053 Calculus I Review for the Final Exam

MATH 2053 Calculus I Review for the Final Exam MATH 05 Calculus I Review for the Final Exam (x+ x) 9 x 9 1. Find the limit: lim x 0. x. Find the limit: lim x + x x (x ).. Find lim x (x 5) = L, find such that f(x) L < 0.01 whenever 0 < x

More information

13.7 Power Applied by a Constant Force

13.7 Power Applied by a Constant Force 13.7 Power Applied by a Constant Force Suppose that an applied force F a acts on a body during a time interval Δt, and the displacement of the point of application of the force is in the x -direction by

More information

AP Statistics - Chapter 2A Extra Practice

AP Statistics - Chapter 2A Extra Practice AP Statistics - Chapter 2A Extra Practice 1. A study is conducted to determine if one can predict the yield of a crop based on the amount of yearly rainfall. The response variable in this study is A) yield

More information

Test 3 Review. y f(a) = f (a)(x a) y = f (a)(x a) + f(a) L(x) = f (a)(x a) + f(a)

Test 3 Review. y f(a) = f (a)(x a) y = f (a)(x a) + f(a) L(x) = f (a)(x a) + f(a) MATH 2250 Calculus I Eric Perkerson Test 3 Review Sections Covered: 3.11, 4.1 4.6. Topics Covered: Linearization, Extreme Values, The Mean Value Theorem, Consequences of the Mean Value Theorem, Concavity

More information

Math Practice Exam 2 - solutions

Math Practice Exam 2 - solutions Math 181 - Practice Exam 2 - solutions Problem 1 A population of dinosaurs is modeled by P (t) = 0.3t 2 + 0.1t + 10 for times t in the interval [ 5, 0]. a) Find the rate of change of this population at

More information

Final Exam Review Packet

Final Exam Review Packet 1 Exam 1 Material Sections A.1, A.2 and A.6 were review material. There will not be specific questions focused on this material but you should know how to: Simplify functions with exponents. Factor quadratics

More information

Final Exam Review Packet

Final Exam Review Packet 1 Exam 1 Material Sections A.1, A.2 and A.6 were review material. There will not be specific questions focused on this material but you should know how to: Simplify functions with exponents. Factor quadratics

More information

Math 121 Winter 2010 Review Sheet

Math 121 Winter 2010 Review Sheet Math 121 Winter 2010 Review Sheet March 14, 2010 This review sheet contains a number of problems covering the material that we went over after the third midterm exam. These problems (in conjunction with

More information

1.2. Functions and Their Properties. Copyright 2011 Pearson, Inc.

1.2. Functions and Their Properties. Copyright 2011 Pearson, Inc. 1.2 Functions and Their Properties Copyright 2011 Pearson, Inc. What you ll learn about Function Definition and Notation Domain and Range Continuity Increasing and Decreasing Functions Boundedness Local

More information

MLC Practice Final Exam. Recitation Instructor: Page Points Score Total: 200.

MLC Practice Final Exam. Recitation Instructor: Page Points Score Total: 200. Name: PID: Section: Recitation Instructor: DO NOT WRITE BELOW THIS LINE. GO ON TO THE NEXT PAGE. Page Points Score 3 20 4 30 5 20 6 20 7 20 8 20 9 25 10 25 11 20 Total: 200 Page 1 of 11 Name: Section:

More information

MIDTERM 2. Section: Signature:

MIDTERM 2. Section: Signature: MIDTERM 2 Math 3A 11/17/2010 Name: Section: Signature: Read all of the following information before starting the exam: Check your exam to make sure all pages are present. When you use a major theorem (like

More information

Relations and Functions (for Math 026 review)

Relations and Functions (for Math 026 review) Section 3.1 Relations and Functions (for Math 026 review) Objective 1: Understanding the s of Relations and Functions Relation A relation is a correspondence between two sets A and B such that each element

More information

Introduction to Optimization

Introduction to Optimization Introduction to Optimization Konstantin Tretyakov (kt@ut.ee) MTAT.03.227 Machine Learning So far Machine learning is important and interesting The general concept: Fitting models to data So far Machine

More information

Cumulative Test 1. Evaluate the expression Answers [32 (17 12) 2 ] [(5 + 3)2 31]

Cumulative Test 1. Evaluate the expression Answers [32 (17 12) 2 ] [(5 + 3)2 31] Name Date Cumulative Test 1 Evaluate the expression. 1. 7 + 6 3. 4 5 18 3. 4[3 (17 1) ] 4. 3 [(5 + 3) 31] 5. 3(5m 4) when m = 6. 9x 4 when x = 3 Write an algebraic expression, an equation, or an inequality.

More information

Analysis of Functions

Analysis of Functions Lecture for Week 11 (Secs. 5.1 3) Analysis of Functions (We used to call this topic curve sketching, before students could sketch curves by typing formulas into their calculators. It is still important

More information

Math Fall 08 Final Exam Review

Math Fall 08 Final Exam Review Math 173.7 Fall 08 Final Exam Review 1. Graph the function f(x) = x 2 3x by applying a transformation to the graph of a standard function. 2.a. Express the function F(x) = 3 ln(x + 2) in the form F = f

More information

1. Write the definition of continuity; i.e. what does it mean to say f(x) is continuous at x = a?

1. Write the definition of continuity; i.e. what does it mean to say f(x) is continuous at x = a? Review Worksheet Math 251, Winter 15, Gedeon 1. Write the definition of continuity; i.e. what does it mean to say f(x) is continuous at x = a? 2. Is the following function continuous at x = 2? Use limits

More information

MAT 122 Homework 7 Solutions

MAT 122 Homework 7 Solutions MAT 1 Homework 7 Solutions Section 3.3, Problem 4 For the function w = (t + 1) 100, we take the inside function to be z = t + 1 and the outside function to be z 100. The derivative of the inside function

More information

STAT Section 2.1: Basic Inference. Basic Definitions

STAT Section 2.1: Basic Inference. Basic Definitions STAT 518 --- Section 2.1: Basic Inference Basic Definitions Population: The collection of all the individuals of interest. This collection may be or even. Sample: A collection of elements of the population.

More information

Name: Date: Block: Quarter 2 Summative Assessment Revision #1

Name: Date: Block: Quarter 2 Summative Assessment Revision #1 Name: Date: Block: Multiple Choice Non-Calculator Quarter Summative Assessment Revision #1 1. The graph of y = x x has a relative maximum at (a) (0,0) only (b) (1,) only (c) (,4) only (d) (4, 16) only

More information

Mathematical Economics: Lecture 2

Mathematical Economics: Lecture 2 Mathematical Economics: Lecture 2 Yu Ren WISE, Xiamen University September 25, 2012 Outline 1 Number Line The number line, origin (Figure 2.1 Page 11) Number Line Interval (a, b) = {x R 1 : a < x < b}

More information

ALGEBRA 1 PACING GUIDE

ALGEBRA 1 PACING GUIDE Unit 8 Graphing Quadratic Functions F-BF.3 F-IF.2 F-IF.4 F-IF.7a F-BF.1 Identify the effect on the graph of replacing f(x) by f(x) + k, k f(x), f(kx), and f(x + k) for specific values of k (both positive

More information

Lecture 6: Linear Regression (continued)

Lecture 6: Linear Regression (continued) Lecture 6: Linear Regression (continued) Reading: Sections 3.1-3.3 STATS 202: Data mining and analysis October 6, 2017 1 / 23 Multiple linear regression Y = β 0 + β 1 X 1 + + β p X p + ε Y ε N (0, σ) i.i.d.

More information

CS489/698: Intro to ML

CS489/698: Intro to ML CS489/698: Intro to ML Lecture 04: Logistic Regression 1 Outline Announcements Baseline Learning Machine Learning Pyramid Regression or Classification (that s it!) History of Classification History of

More information

43.1 Vector Fields and their properties

43.1 Vector Fields and their properties Module 15 : Vector fields, Gradient, Divergence and Curl Lecture 43 : Vector fields and their properties [Section 43.1] Objectives In this section you will learn the following : Concept of Vector field.

More information

Machine Learning Brett Bernstein. Recitation 1: Gradients and Directional Derivatives

Machine Learning Brett Bernstein. Recitation 1: Gradients and Directional Derivatives Machine Learning Brett Bernstein Recitation 1: Gradients and Directional Derivatives Intro Question 1 We are given the data set (x 1, y 1 ),, (x n, y n ) where x i R d and y i R We want to fit a linear

More information

Lecture Notes (Math 90): Week IX (Thursday)

Lecture Notes (Math 90): Week IX (Thursday) Lecture Notes (Math 90): Week IX (Thursday) Alicia Harper November 13, 2017 Monotonic functions/convexity and Concavity 1 The Story 1.1 Monotonic Functions Recall that we say a function is increasing if

More information

d. Predict the number of photos this photographer will keep if she takes 200 photos.

d. Predict the number of photos this photographer will keep if she takes 200 photos. 1 Solve. Regression Practice Curve Fitting with Linear Models 1. Vern created a website about his school s sports teams. He has a hit counter on his site that lets him know how many people have visited

More information

Calculus I Practice Problems 8: Answers

Calculus I Practice Problems 8: Answers Calculus I Practice Problems : Answers. Let y x x. Find the intervals in which the function is increasing and decreasing, and where it is concave up and concave down. Sketch the graph. Answer. Differentiate

More information

Performance Surfaces and Optimum Points

Performance Surfaces and Optimum Points CSC 302 1.5 Neural Networks Performance Surfaces and Optimum Points 1 Entrance Performance learning is another important class of learning law. Network parameters are adjusted to optimize the performance

More information

Day 3 Lecture 3. Optimizing deep networks

Day 3 Lecture 3. Optimizing deep networks Day 3 Lecture 3 Optimizing deep networks Convex optimization A function is convex if for all α [0,1]: f(x) Tangent line Examples Quadratics 2-norms Properties Local minimum is global minimum x Gradient

More information

Online Math 1314 Final Exam Review

Online Math 1314 Final Exam Review Online Math 1314 Final Exam Review 1. The following table of values gives a company s annual profits in millions of dollars. Rescale the data so that the year 2003 corresponds to x = 0. Year 2003 2004

More information

Linear Regression 1 / 25. Karl Stratos. June 18, 2018

Linear Regression 1 / 25. Karl Stratos. June 18, 2018 Linear Regression Karl Stratos June 18, 2018 1 / 25 The Regression Problem Problem. Find a desired input-output mapping f : X R where the output is a real value. x = = y = 0.1 How much should I turn my

More information

Calculus Example Exam Solutions

Calculus Example Exam Solutions Calculus Example Exam Solutions. Limits (8 points, 6 each) Evaluate the following limits: p x 2 (a) lim x 4 We compute as follows: lim p x 2 x 4 p p x 2 x +2 x 4 p x +2 x 4 (x 4)( p x + 2) p x +2 = p 4+2

More information

Math 180, Final Exam, Fall 2007 Problem 1 Solution

Math 180, Final Exam, Fall 2007 Problem 1 Solution Problem Solution. Differentiate with respect to x. Write your answers showing the use of the appropriate techniques. Do not simplify. (a) x 27 x 2/3 (b) (x 2 2x + 2)e x (c) ln(x 2 + 4) (a) Use the Power

More information

UNIVERSITY OF REGINA Department of Mathematics and Statistics. Calculus I Mathematics 110. Final Exam, Winter 2013 (April 25 th )

UNIVERSITY OF REGINA Department of Mathematics and Statistics. Calculus I Mathematics 110. Final Exam, Winter 2013 (April 25 th ) UNIVERSITY OF REGINA Department of Mathematics and Statistics Calculus I Mathematics 110 Final Exam, Winter 2013 (April 25 th ) Time: 3 hours Pages: 11 Full Name: Student Number: Instructor: (check one)

More information

MA 110 Algebra and Trigonometry for Calculus Spring 2017 Exam 1 Tuesday, 7 February Multiple Choice Answers EXAMPLE A B C D E.

MA 110 Algebra and Trigonometry for Calculus Spring 2017 Exam 1 Tuesday, 7 February Multiple Choice Answers EXAMPLE A B C D E. MA 110 Algebra and Trigonometry for Calculus Spring 2017 Exam 1 Tuesday, 7 February 2017 Multiple Choice Answers EXAMPLE A B C D E Question Name: Section: Last 4 digits of student ID #: This exam has ten

More information

MA Lesson 9 Notes, Section 3.1 (2 nd half of text) Limits

MA Lesson 9 Notes, Section 3.1 (2 nd half of text) Limits MA 15910 Lesson 9 Notes, Section 3.1 ( nd half of text) Limits In everyday language, people refer to a speed limit, a wrestler s weight limit, the limit on one s endurance, or stretching a spring to its

More information

6.1 Using Properties of Exponents 1. Use properties of exponents to evaluate and simplify expressions involving powers. Product of Powers Property

6.1 Using Properties of Exponents 1. Use properties of exponents to evaluate and simplify expressions involving powers. Product of Powers Property 6.1 Using Properties of Exponents Objectives 1. Use properties of exponents to evaluate and simplify expressions involving powers. 2. Use exponents and scientific notation to solve real life problems.

More information

Math 121 Calculus 1 Fall 2009 Outcomes List for Final Exam

Math 121 Calculus 1 Fall 2009 Outcomes List for Final Exam Math 121 Calculus 1 Fall 2009 Outcomes List for Final Exam This outcomes list summarizes what skills and knowledge you should have reviewed and/or acquired during this entire quarter in Math 121, and what

More information

4.2: What Derivatives Tell Us

4.2: What Derivatives Tell Us 4.2: What Derivatives Tell Us Problem Fill in the following blanks with the correct choice of the words from this list: Increasing, decreasing, positive, negative, concave up, concave down (a) If you know

More information

Unit 3 Day 13 Review 1

Unit 3 Day 13 Review 1 Unit 3 Day 13 Review 1 Warm-up! Graph the following functions, with at least 4 points. Find the domain and range. Then, tell how they are changed from their parent graph. (Hint: Remember that the order

More information

Suppose that f is continuous on [a, b] and differentiable on (a, b). Then

Suppose that f is continuous on [a, b] and differentiable on (a, b). Then Lectures 1/18 Derivatives and Graphs When we have a picture of the graph of a function f(x), we can make a picture of the derivative f (x) using the slopes of the tangents to the graph of f. In this section

More information

MLC Practice Final Exam

MLC Practice Final Exam 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 all your work on the standard response

More information

Lecture 6: Linear Regression

Lecture 6: Linear Regression Lecture 6: Linear Regression Reading: Sections 3.1-3 STATS 202: Data mining and analysis Jonathan Taylor, 10/5 Slide credits: Sergio Bacallado 1 / 30 Simple linear regression Model: y i = β 0 + β 1 x i

More information

= π + sin π = π + 0 = π, so the object is moving at a speed of π feet per second after π seconds. (c) How far does it go in π seconds?

= π + sin π = π + 0 = π, so the object is moving at a speed of π feet per second after π seconds. (c) How far does it go in π seconds? Mathematics 115 Professor Alan H. Stein April 18, 005 SOLUTIONS 1. Define what is meant by an antiderivative or indefinite integral of a function f(x). Solution: An antiderivative or indefinite integral

More information

Algebra II End of Course Exam Answer Key Segment I. Scientific Calculator Only

Algebra II End of Course Exam Answer Key Segment I. Scientific Calculator Only Algebra II End of Course Exam Answer Key Segment I Scientific Calculator Only Question 1 Reporting Category: Modeling & Problem Solving Common Core Standard: A-REI.4a: Solve quadratic equations in one

More information

MATH 151, FALL 2017 COMMON EXAM III - VERSION B

MATH 151, FALL 2017 COMMON EXAM III - VERSION B MATH 151, FALL 2017 COMMON EXAM III - VERSION B LAST NAME(print): FIRST NAME(print): INSTRUCTOR: SECTION NUMBER: DIRECTIONS: 1. The use of a calculator, laptop or computer is prohibited. 2. TURN OFF cell

More information

McGILL UNIVERSITY FACULTY OF SCIENCE FINAL EXAMINATION MATHEMATICS CALCULUS 1

McGILL UNIVERSITY FACULTY OF SCIENCE FINAL EXAMINATION MATHEMATICS CALCULUS 1 McGILL UNIVERSITY FACULTY OF SCIENCE FINAL EXAMINATION VERSION 1 MATHEMATICS 140 2008 09 CALCULUS 1 EXAMINER: Professor W. G. Brown DATE: Sunday, December 07th, 2008 ASSOCIATE EXAMINER: Dr. D. Serbin TIME:

More information

Exam A. Exam 3. (e) Two critical points; one is a local maximum, the other a local minimum.

Exam A. Exam 3. (e) Two critical points; one is a local maximum, the other a local minimum. 1.(6 pts) The function f(x) = x 3 2x 2 has: Exam A Exam 3 (a) Two critical points; one is a local minimum, the other is neither a local maximum nor a local minimum. (b) Two critical points; one is a local

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

Non-convex optimization. Issam Laradji

Non-convex optimization. Issam Laradji Non-convex optimization Issam Laradji Strongly Convex Objective function f(x) x Strongly Convex Objective function Assumptions Gradient Lipschitz continuous f(x) Strongly convex x Strongly Convex Objective

More information

Lecture 4: Training a Classifier

Lecture 4: Training a Classifier Lecture 4: Training a Classifier Roger Grosse 1 Introduction Now that we ve defined what binary classification is, let s actually train a classifier. We ll approach this problem in much the same way as

More information

Section 3.1 Extreme Values

Section 3.1 Extreme Values Math 132 Extreme Values Section 3.1 Section 3.1 Extreme Values Example 1: Given the following is the graph of f(x) Where is the maximum (x-value)? What is the maximum (y-value)? Where is the minimum (x-value)?

More information

Lesson 2a Linear Functions and Applications. Practice Problems

Lesson 2a Linear Functions and Applications. Practice Problems 1. You decided to save up for a vacation to Europe by throwing all your loose change in a large coffee can. After a few months, you discover that the jar is 2 inches full and contains $124. a) Determine

More information

Chapter 3 Polynomial Functions

Chapter 3 Polynomial Functions Trig / Coll. Alg. Name: Chapter 3 Polynomial Functions 3.1 Quadratic Functions (not on this test) For each parabola, give the vertex, intercepts (x- and y-), axis of symmetry, and sketch the graph. 1.

More information

MA 113 Calculus I Fall 2015 Exam 3 Tuesday, 17 November Multiple Choice Answers. Question

MA 113 Calculus I Fall 2015 Exam 3 Tuesday, 17 November Multiple Choice Answers. Question MA 11 Calculus I Fall 2015 Exam Tuesday, 17 November 2015 Name: Section: Last 4 digits of student ID #: This exam has ten multiple choice questions (five points each) and five free response questions (ten

More information

1.1 Functions. Input (Independent or x) and output (Dependent or y) of a function. Range: Domain: Function Rule. Input. Output.

1.1 Functions. Input (Independent or x) and output (Dependent or y) of a function. Range: Domain: Function Rule. Input. Output. 1.1 Functions Function Function: A rule for a relationship between an input, or independent, quantity and an output, or dependent, quantity in which each input value uniquely determines one output value.

More information

Bonus Homework and Exam Review - Math 141, Frank Thorne Due Friday, December 9 at the start of the final exam.

Bonus Homework and Exam Review - Math 141, Frank Thorne Due Friday, December 9 at the start of the final exam. Bonus Homework and Exam Review - Math 141, Frank Thorne (thornef@mailbox.sc.edu) Due Friday, December 9 at the start of the final exam. It is strongly recommended that you do as many of these problems

More information

Categorical Predictor Variables

Categorical Predictor Variables Categorical Predictor Variables We often wish to use categorical (or qualitative) variables as covariates in a regression model. For binary variables (taking on only 2 values, e.g. sex), it is relatively

More information

Midterm: Wednesday, January 23 rd at 8AM Midterm Review

Midterm: Wednesday, January 23 rd at 8AM Midterm Review Name: Algebra 1 CC Period: Midterm: Wednesday, January 23 rd at 8AM Midterm Review Unit 1: Building Blocks of Algebra Number Properties (Distributive, Commutative, Associative, Additive, Multiplicative)

More information