Test 2 - Python Edition

Size: px
Start display at page:

Download "Test 2 - Python Edition"

Transcription

1 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 13L Spring 218 Test 2 - Python Edition Shaundra B. Daily & Michael R. Gustafson II Name (please print): NetID (please print): In keeping with the Community Standard, I have neither provided nor received any assistance on this test. I understand if it is later determined that I gave or received assistance, I will be brought before the Undergraduate Conduct Board and, if found responsible for academic dishonesty or academic contempt, fail the class. I also understand that I am not allowed to speak to anyone ecept the instructor about any aspect of this test until the instructor announces it is allowed. I understand if it is later determined that I did speak to another person about the test before the instructor said it was allowed, I will be brought before the Undergraduate Conduct Board and, if found responsible for academic dishonesty or academic contempt, fail the class. Signature: Notes You will be turning in each problem in a separate pile. Most of these problems will require working on additional pieces of paper - Make sure that you do not put work for more than any one problem on any one piece of paper. For this test, you will be turning in four different sets of work. Again, Please do not work on multiple problems on the same sheet of paper. Also - please do not put work for one problem on the back of another problem. Be sure your name and NetID show up on every page of the test. If you are including work on etra sheets of paper, put your name and NetID on each and be sure to staple them to the appropriate problem. Problems without names will incur at least a 25% penalty for the problem. Work must be down in dark ink and on only one side of the page. This first page should have your name, NetID, and signature on it. It should be stapled on top of and turned in with your submission for Problem I. Every other pile should have your test page on top followed by any previously blank paper used for that problem. You will not need and can not use a calculator on this test. For hand calculations you will instead show the set-up of the calculation you need to perform but will not reduce it. You can leave powers, roots, products, sums, differences, and quotients unevaluated - for eample, (3)(2) + (8)(11) (6)(24) A = (8) 2 (4) 2 + (2) 2 (7) 2 should be left just like that. You will be asked to write several lines of code on this test. Make sure what you write is code and not mathematics. Be very careful with any symbols you use. You do not need to put the honor code statement in your codes. The honor code statement on this page and your NetID on each problem stands in for that.

2 Problem I: [2 pts.] The Basics (1) Assume that someone has already run the following code: 1 T = np.array([[1, 2],[3, 4]]) 2 U = np.array([[-5, 6],[7, -8]]) which has created the following matrices: [ ] 1 2 T = 3 4 U = [ ] For each of the following sections, determine the resulting matri or matrices created by Python. Put your answers near the block of code from which they came and be sure to indicate which matri is which; your work can go on a separate sheet that you will staple to this page. Your answers can look like Python output or like mathematical epressions. (a) A = T**2 (f) F = (-1<U) & (U<) (b) B = T@T (g) G = U>T (c) C = T*U (h) H = np.where(u<) (d) D = T@U (i) I = T[np.where(U<)] (e) E = np.mean(t) (j) J = np.block([[t], [U]]) (2) Determine the values of the matrices K, L, M, and N when the following loop is finished 1 K=; L=[]; M=; N=np.ones(6) 2 for K in np.arange(1, 6, 2): 3 L += [K]; 4 M = M+K; 5 N[K] = K;

3 Problem II: [3 pts.] Roots and Etrema (1) This part of the problem refers to: f() = e + e + 5cos(2) The function and the sign of the function are presented on the net page which should be turned in with this problem. Assuming the following code is already in place: 1 f = lambda : np.ep()+np.ep(-)-+5*np.cos(2*) (a) Determine the location of the two roots of f(). At the end of your code, the location of the left root should be stored in RootLeft and the location of the right root should be stored in RootRight. (b) Determine the value and location of the overall minimum value of f(). At the end of your code, the value should be stored in MinVal1 and the location should be stored in MinLoc1. (c) Determine the value and location of the local minimum value of f() when <. At the end of your code, the value should be stored in MinVal2 and the location should be stored in MinLoc2. (d) Determine the value and location of the local maimum value of f() when 1 < < 1. At the end of your code, the value should be stored in MaVal and the location should be stored in MaLoc. (e) Determine the two values of where f() = 1. At the end of your code, these values should be stored in f11 and f12. (f) Write the code that produces the top figure on the net page. Note that 1 points were used. (2) This part of the problem refers to: g(,y) = cos() sin(y) 2 + y The function and the contour plot of the function are presented on the net page which should be turned in with this problem. Assuming the following code is already in place: 1 g = lambda,y: np.cos()*np.sin(y)/(**2+y**2+1) (a) Determine the value and location of the overall minimum value of g(,y). At the end of your code, the value should be stored in gmin and the and y coordinates should be stored in gmin and ygmin, respectively. (b) Determine the value and location of the overall maimum value of g(,y). At the end of your code, the value should be stored in gma and the and y coordinates should be stored in gma and gma, respectively. (c) Read this carefully: determine the value and y coordinate of the minimum value of g(,y) when is -3. At the end of your code, the value should be stored in ghmm and the y coordinate should be stored in yhmm. (d) Write the code that produced the bottom left plot of g(,y). Note that 3 points were used in each direction and that the copper color map was used.

4 2 f() sign(f()) g(,y) y y

5 Problem III: [3 pts.] Linear Algebra (1) Given the following epression: [ ] [ ] a y = [ ] 5 6 where a is some known, but variable, value and and y represent your unknowns: (a) Find an epression for the determinant of the coefficient matri - that is, a (b) Find an epression for the inverse of the coefficient matri - that is, ([ ]) a (c) Are there values of a for which there is no solution to this problem? If not, state why you believe that. If so, state what value or values of a mean there is no solution. (d) For a particular value of a, the condition number of the system is given as 1 5. If the measurements for the system were taken with 8 significant figures, what does this condition number mean about the accuracy of the solution? (e) Clearly use linear algebra to solve for and y as functions of a. (2) Given the electric circuit below: R 1 R 3 v s + v a R 2 v b R where R 1 through R 3 are resistors with set values, v s is a known voltage source with a set value, R is a variable resistor (called a potentiometer), and v 1 and v 2 are unknown voltages, a student taking a class requiring the ability to solve for circuits has come up with the following equations: v a v s R 1 + v a + v a v b = R 2 R 3 v b v a + v b = R 3 R (a) Assuming that the values of v 1 and v 2 are unknown, re-write the equations above in linear algebra form; that is, fill in the following: v a v b = (b) Now assume that R 1 =1 Ω, R 2 =2 Ω, R 3 =3 Ω, and v s =1 V. The potentiometer R can have values ranging from Ω to 5 Ω. Write code that will clearly use linear algebra techniques to solve for the voltages v a and v b as functions of R for 5 values of R linearly spaced across the possible range of values, then write code to make a graph containing curves for both v a and v b as a function of R. Be sure to include appropriate ais labels, a title, a grid, and a legend. v a should be plotted as a solid red line and v b should be plotted as a dashed blue line.

6 Problem IV: [2 pts.] Stats and Fits You are given a data file called MyInfo.dat containing eleven pairs of independent (left) and dependent (right) values. For eample, the file might look like: Write a program called FitRand that performs the following tasks: (1) Loads the data. (2) Calculates and displays the sum of the squares of the data residuals. (3) Efficiently calculates the sums of the squares of the estimate residuals and the coefficients of determination for polynomial fits of order 1 through 6 and displays them in an aligned table (see below) where decimal values are in eponential format with four significant digits. (4) Determines the lowest order of those si fits to have a coefficient of determination at or above.95 and displays that order. If none of the fits has a coefficient of determination of at least.95, state, Fit order is higher than 6. Here are two eample runs: 1 St is 1.29e+1 2 Order Sr r e+ 3.6e e+ 6.48e e e e e e e e e-1 9 Fit order is likely: 3 1 St is 3.49e+1 2 Order Sr r e e e e e e e e e e e+ 7.74e-1 9 Fit order is higher than 6

Test 1 - Python Edition

Test 1 - Python Edition 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 103L Spring 2018 Test 1 - Python Edition Shaundra B. Daily & Michael R. Gustafson II NetID (please print): In keeping with the Community Standard, I

More information

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 103L Fall Skills Quiz. Rebecca A. Simmons and & Michael R.

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 103L Fall Skills Quiz. Rebecca A. Simmons and & Michael R. 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 103L Fall 2014 Skills Quiz Rebecca A. Simmons and & Michael R. Gustafson II NET ID (please print): In keeping with the Community Standard, I have neither

More information

Skills Quiz - Python Edition Solutions

Skills Quiz - Python Edition Solutions 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 103L Fall 2017 Skills Quiz - Python Edition Solutions Michael R. Gustafson II Name (please print): NetID (please print): In keeping with the Community

More information

Skills Quiz - Python Edition Solutions

Skills Quiz - Python Edition Solutions 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 103L Fall 2016 Skills Quiz - Python Edition Solutions Rebecca A. Simmons and & Michael R. Gustafson II Name (please print): NetID (please print): In

More information

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 53L Fall Test I. Rebecca A. Simmons & W. Neal Simmons Michael R.

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 53L Fall Test I. Rebecca A. Simmons & W. Neal Simmons Michael R. 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 53L Fall 2007 Test I Rebecca A. Simmons & W. Neal Simmons Michael R. Gustafson II Name (please print) In keeping with the Community Standard, I have

More information

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 53L Fall Test I. Rebecca A. Simmons & Michael R. Gustafson II

'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ. EGR 53L Fall Test I. Rebecca A. Simmons & Michael R. Gustafson II 'XNH8QLYHUVLW\ (GPXQG73UDWW-U6FKRRORI(QJLQHHULQJ EGR 53L Fall 2009 Test I Rebecca A. Simmons & Michael R. Gustafson II Name and NET ID (please print) In keeping with the Community Standard, I have neither

More information

For more information, see the Math Notes box in Lesson of the Core Connections, Course 1 text.

For more information, see the Math Notes box in Lesson of the Core Connections, Course 1 text. Number TYPES OF NUMBERS When two or more integers are multiplied together, each number is a factor of the product. Nonnegative integers that have eactly two factors, namely, one and itself, are called

More information

( ) ( ) Completing the Square. Alg 3 1 Rational Roots Solving Polynomial Equations. A Perfect Square Trinomials

( ) ( ) Completing the Square. Alg 3 1 Rational Roots Solving Polynomial Equations. A Perfect Square Trinomials Alg Completing the Square A Perfect Square Trinomials (± ) ± (± ) ± 4 4 (± ) ± 6 9 (± 4) ± 8 6 (± 5) ± 5 What is the relationship between the red term and the blue term? B. Creating perfect squares.. 6

More information

Example 1: Given below is the graph of the quadratic function f. Use the function and its graph to find the following: Outputs

Example 1: Given below is the graph of the quadratic function f. Use the function and its graph to find the following: Outputs Quadratic Functions: - functions defined by quadratic epressions (a 2 + b + c) o the degree of a quadratic function is ALWAYS 2 - the most common way to write a quadratic function (and the way we have

More information

Assignment 2. with (a) (10 pts) naive Gauss elimination, (b) (10 pts) Gauss with partial pivoting

Assignment 2. with (a) (10 pts) naive Gauss elimination, (b) (10 pts) Gauss with partial pivoting Assignment (Be sure to observe the rules about handing in homework). Solve: with (a) ( pts) naive Gauss elimination, (b) ( pts) Gauss with partial pivoting *You need to show all of the steps manually.

More information

ECE 204 Numerical Methods for Computer Engineers MIDTERM EXAMINATION /4:30-6:00

ECE 204 Numerical Methods for Computer Engineers MIDTERM EXAMINATION /4:30-6:00 ECE 4 Numerical Methods for Computer Engineers ECE 4 Numerical Methods for Computer Engineers MIDTERM EXAMINATION --7/4:-6: The eamination is out of marks. Instructions: No aides. Write your name and student

More information

Solving General Linear Equations w/ Excel

Solving General Linear Equations w/ Excel Solving General Linear Equations w/ Ecel Matri Operations in Ecel Ecel has commands for: Multiplication (mmult) matri multiplication Transpose (transpose) transpose a matri Determinant (mdeterm) calc the

More information

Skills Practice Skills Practice for Lesson 7.1

Skills Practice Skills Practice for Lesson 7.1 Skills Practice Skills Practice for Lesson.1 Name Date What s the Inverse of an Eponent? Logarithmic Functions as Inverses Vocabulary Write the term that best completes each statement. 1. The of a number

More information

I Doubt It Lesson 6-1 Transforming Functions

I Doubt It Lesson 6-1 Transforming Functions I Doubt It Lesson 6- Learning Targets: Graph transformations of functions and write the equations of the transformed functions. Describe the symmetry of the graphs of even and odd functions. SUGGESTED

More information

3.5 - Concavity. a concave up. a concave down

3.5 - Concavity. a concave up. a concave down . - Concavity 1. Concave up and concave down For a function f that is differentiable on an interval I, the graph of f is If f is concave up on a, b, then the secant line passing through points 1, f 1 and,

More information

5.2 Properties of Rational functions

5.2 Properties of Rational functions 5. Properties o Rational unctions A rational unction is a unction o the orm n n1 polynomial p an an 1 a1 a0 k k1 polynomial q bk bk 1 b1 b0 Eample 3 5 1 The domain o a rational unction is the set o all

More information

I. This material refers to mathematical methods designed for facilitating calculations in matrix

I. This material refers to mathematical methods designed for facilitating calculations in matrix A FEW CONSIDERATIONS REGARDING MATRICES operations. I. This material refers to mathematical methods designed for facilitating calculations in matri In this case, we know the operations of multiplying two

More information

Find the Relationship: An Exercise in Graphical Analysis

Find the Relationship: An Exercise in Graphical Analysis Find the Relationship: An Eercise in Graphical Analsis In several laborator investigations ou do this ear, a primar purpose will be to find the mathematical relationship between two variables. For eample,

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. Name: Section: Recitation Instructor: INSTRUCTIONS Fill in your name, etc. on this first page. Without fully opening the exam, check that you have pages 1 through 11. Show all your work on the standard

More information

PreCalculus 300. Algebra 2 Review

PreCalculus 300. Algebra 2 Review PreCalculus 00 Algebra Review Algebra Review The following topics are a review of some of what you learned last year in Algebra. I will spend some time reviewing them in class. You are responsible for

More information

3.5 Rational Functions

3.5 Rational Functions 0 Chapter Polnomial and Rational Functions Rational Functions For a rational function, find the domain and graph the function, identifing all of the asmptotes Solve applied problems involving rational

More information

MAT 4199C/5107 Second Homework Assignment Due 13 Feb by 1:00pm

MAT 4199C/5107 Second Homework Assignment Due 13 Feb by 1:00pm Marks: LAST NAME: First name: Student number: MAT 4199C/5107 Second Homework Assignment Due 13 Feb. 2019 by 1:00pm Instructions: The question labelled (U) is for undergraduate students only, while question

More information

Instructor: Virginia Davis Course: Foundations for College Math (1)

Instructor: Virginia Davis Course: Foundations for College Math (1) 5/19/01 Final Eam Review Ch 10,11-Virginia Davis Student: Date: Instructor: Virginia Davis Course: Foundations for College Math (1) Assignment: Final Eam Review Ch 10,11 1. Simplif b factoring. Assume

More information

Domain: The domain of f is all real numbers except those values for which Q(x) =0.

Domain: The domain of f is all real numbers except those values for which Q(x) =0. Math 1330 Section.3.3: Rational Functions Definition: A rational function is a function that can be written in the form P() f(), where f and g are polynomials. Q() The domain of the rational function such

More information

Solving Quadratics Algebraically Investigation

Solving Quadratics Algebraically Investigation Unit NOTES Honors Common Core Math 1 Day 1: Factoring Review and Solving For Zeroes Algebraically Warm-Up: 1. Write an equivalent epression for each of the problems below: a. ( + )( + 4) b. ( 5)( + 8)

More information

Cumulative Review Problems Packet # 1

Cumulative Review Problems Packet # 1 April 15, 009 Cumulative Review Problems Packet #1 page 1 Cumulative Review Problems Packet # 1 This set of review problems will help you prepare for the cumulative test on Friday, April 17. The test will

More information

Transformations. which the book introduces in this chapter. If you shift the graph of y 1 x to the left 2 units and up 3 units, the

Transformations. which the book introduces in this chapter. If you shift the graph of y 1 x to the left 2 units and up 3 units, the CHAPTER 8 Transformations Content Summar In Chapter 8, students continue their work with functions, especiall nonlinear functions, through further stud of function graphs. In particular, the consider three

More information

Functions Project Core Precalculus Extra Credit Project

Functions Project Core Precalculus Extra Credit Project Name: Period: Date Due: 10/10/1 (for A das) and 10/11/1(for B das) Date Turned In: Functions Project Core Precalculus Etra Credit Project Instructions and Definitions: This project ma be used during the

More information

Technology Assignment: Limits at Infinity

Technology Assignment: Limits at Infinity The goal of this technology assignment is to find the location of the horizontal asymptote for your model from Technology Assignment: Rational Model. You will produce a graph similar to the one below.

More information

The Department of Engineering Science The University of Auckland Welcome to ENGGEN 131 Engineering Computation and Software Development

The Department of Engineering Science The University of Auckland Welcome to ENGGEN 131 Engineering Computation and Software Development The Department of Engineering Science The University of Auckland Welcome to ENGGEN 131 Engineering Computation and Software Development Chapter 1 An Introduction to MATLAB Course Information (from Course

More information

Lesson 3: Solving Equations; Floating-point Computation

Lesson 3: Solving Equations; Floating-point Computation Lesson 3: Solving Equations; Floating-point Computation restart; A hard equation Last time we were looking at this equation. eq := * sin() = Pi/2; (1.1) Maple didn't know the solutions. solve(eq,,allsolutions);

More information

Student Exploration: General Form of a Rational Function

Student Exploration: General Form of a Rational Function Name: Date: Student Eploration: General Form of a Rational Function Vocabulary: asymptote, degree of a polynomial, discontinuity, rational function, root Prior Knowledge Questions (Do these BEFORE using

More information

Fractions. 7th Grade Math. Review of 6th Grade. Slide 1 / 306 Slide 2 / 306. Slide 4 / 306. Slide 3 / 306. Slide 5 / 306.

Fractions. 7th Grade Math. Review of 6th Grade. Slide 1 / 306 Slide 2 / 306. Slide 4 / 306. Slide 3 / 306. Slide 5 / 306. Slide 1 / 06 Slide 2 / 06 7th Grade Math Review of 6th Grade 2015-01-14 www.njctl.org Slide / 06 Table of Contents Click on the topic to go to that section Slide 4 / 06 Fractions Decimal Computation Statistics

More information

Neatly print first and last names: Exam II. "On my honor, as an Aggie, I have neither given nor received unauthorized aid on this academic work.

Neatly print first and last names: Exam II. On my honor, as an Aggie, I have neither given nor received unauthorized aid on this academic work. Fry Texas A&M University! Math 150 Precalculus Fall 2015! 1 Neatly print first and last names: Lecture Time:!! 12:45 PM!!! 2:20 PM!! (Circle one.) Exam II "On my honor, as an Aggie, I have neither given

More information

Mini-Lecture 8.1 Introduction to Radicals

Mini-Lecture 8.1 Introduction to Radicals Copyright 01 Pearson Education, Inc. Mini-Lecture 8.1 Introduction to Radicals 1. Find square roots.. Find cube roots.. Find nth roots.. Approimate square roots.. Simplify radicals containing variables.

More information

4.2 Properties of Rational Functions. 188 CHAPTER 4 Polynomial and Rational Functions. Are You Prepared? Answers

4.2 Properties of Rational Functions. 188 CHAPTER 4 Polynomial and Rational Functions. Are You Prepared? Answers 88 CHAPTER 4 Polnomial and Rational Functions 5. Obtain a graph of the function for the values of a, b, and c in the following table. Conjecture a relation between the degree of a polnomial and the number

More information

Now each of you should be familiar with inverses from your previous mathematical

Now each of you should be familiar with inverses from your previous mathematical 5. Inverse Functions TOOTLIFTST: Knowledge of derivatives of basic functions, including power, eponential, logarithmic, trigonometric, and inverse trigonometric functions. Now each of you should be familiar

More information

EGR 111 Plotting Data

EGR 111 Plotting Data EGR 111 Plotting Data This lab shows how to import data, plot data, and write script files. This lab also describes the Current Folder, the comment symbol ( % ), and MATLAB file names. New MATLAB Commands:

More information

THIS IS NOT REPRESNTATIVE OF CURRENT CLASS MATERIAL. STOR 455 Midterm 1 September 28, 2010

THIS IS NOT REPRESNTATIVE OF CURRENT CLASS MATERIAL. STOR 455 Midterm 1 September 28, 2010 THIS IS NOT REPRESNTATIVE OF CURRENT CLASS MATERIAL STOR 455 Midterm September 8, INSTRUCTIONS: BOTH THE EXAM AND THE BUBBLE SHEET WILL BE COLLECTED. YOU MUST PRINT YOUR NAME AND SIGN THE HONOR PLEDGE

More information

Lab 6: Graphical Methods

Lab 6: Graphical Methods Lab 6: Graphical Methods 6.1 Introduction EGR 53L - Fall 2009 Lab this week is going to introduce graphical solution and presentation techniques as well as surface plots. 6.2 Resources The additional resources

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. Name: Section: Recitation Instructor: INSTRUCTIONS Fill in your name, etc. on this first page. Without fully opening the exam, check that you have pages 1 through 11. Show all your work on the standard

More information

Name Class Date. subtract 3 from each side. w 5z z 5 2 w p - 9 = = 15 + k = 10m. 10. n =

Name Class Date. subtract 3 from each side. w 5z z 5 2 w p - 9 = = 15 + k = 10m. 10. n = Reteaching Solving Equations To solve an equation that contains a variable, find all of the values of the variable that make the equation true. Use the equalit properties of real numbers and inverse operations

More information

Precalculus Notes Unit 1 Day 1

Precalculus Notes Unit 1 Day 1 Precalculus Notes Unit Day Rules For Domain: When the domain is not specified, it consists of (all real numbers) for which the corresponding values in the range are also real numbers.. If is in the numerator

More information

Section 4.4 Rational Functions and Their Graphs. 1, the line x = 0 (y-axis) is its vertical asymptote.

Section 4.4 Rational Functions and Their Graphs. 1, the line x = 0 (y-axis) is its vertical asymptote. Section 4.4 Rational Functions and Their Graphs p( ) A rational function can be epressed as where p() and q() are q( ) 3 polynomial functions and q() is not equal to 0. For eample, 16 is a rational function.

More information

Wits Maths Connect Secondary Project Card-sorting Activities

Wits Maths Connect Secondary Project Card-sorting Activities Project Card-sorting Activities This pack consists of card-sorting activities which focus on working with different representations. Activities and focus on points while Activity focuses on the linear

More information

1.1 Horizontal & Vertical Translations

1.1 Horizontal & Vertical Translations Unit II Transformations of Functions. Horizontal & Vertical Translations Goal: Demonstrate an understanding of the effects of horizontal and vertical translations on the graphs of functions and their related

More information

NOTES: ALGEBRA FUNCTION NOTATION

NOTES: ALGEBRA FUNCTION NOTATION STARTER: 1. Graph f by completing the table. f, y -1 0 1 4 5 NOTES: ALGEBRA 4.1 FUNCTION NOTATION y. Graph f 4 4 f 4 4, y --5-4 - - -1 0 1 y A Brief Review of Function Notation We will be using function

More information

Section 4.4 Rational Functions and Their Graphs

Section 4.4 Rational Functions and Their Graphs Section 4.4 Rational Functions and Their Graphs p( ) A rational function can be epressed as where p() and q() are q( ) 3 polynomial functions and q() is not equal to 0. For eample, is a 16 rational function.

More information

Unconstrained and Constrained Optimization

Unconstrained and Constrained Optimization Unconstrained and Constrained Optimization Agenda General Ideas of Optimization Interpreting the First Derivative Interpreting the Second Derivative Unconstrained Optimization Constrained Optimization

More information

Problem Possible Points Points Earned Problem Possible Points Points Earned Test Total 100

Problem Possible Points Points Earned Problem Possible Points Points Earned Test Total 100 MATH 1080 Test 2-Version A Fall 2015 Student s Printed Name: Instructor: Section # : You are not allowed to use any textbook, notes, cell phone, laptop, PDA, or any technology on any portion of this test.

More information

The domain of any rational function is all real numbers except the numbers that make the denominator zero or where q ( x)

The domain of any rational function is all real numbers except the numbers that make the denominator zero or where q ( x) We will look at the graphs of these functions, eploring their domain and end behavior. College algebra Class notes Rational Functions with Vertical, Horizontal, and Oblique Asymptotes (section 4.) Definition:

More information

TANGENTS AND NORMALS

TANGENTS AND NORMALS Mathematics Revision Guides Tangents and Normals Page 1 of 8 MK HOME TUITION Mathematics Revision Guides Level: AS / A Level AQA : C1 Edecel: C OCR: C1 OCR MEI: C TANGENTS AND NORMALS Version : 1 Date:

More information

Essential Question How many turning points can the graph of a polynomial function have?

Essential Question How many turning points can the graph of a polynomial function have? .8 Analzing Graphs of Polnomial Functions Essential Question How man turning points can the graph of a polnomial function have? A turning point of the graph of a polnomial function is a point on the graph

More information

Radical Expressions and Functions What is a square root of 25? How many square roots does 25 have? Do the following square roots exist?

Radical Expressions and Functions What is a square root of 25? How many square roots does 25 have? Do the following square roots exist? Hartfield Intermediate Algebra (Version 2014-2D) Unit 4 Page 1 Topic 4 1 Radical Epressions and Functions What is a square root of 25? How many square roots does 25 have? Do the following square roots

More information

This handout will discuss three kinds of asymptotes: vertical, horizontal, and slant.

This handout will discuss three kinds of asymptotes: vertical, horizontal, and slant. CURVE SKETCHING This is a handout that will help you systematically sketch functions on a coordinate plane. This handout also contains definitions of relevant terms needed for curve sketching. ASYMPTOTES:

More information

2.4. Families of Polynomial Functions

2.4. Families of Polynomial Functions 2. Families of Polnomial Functions Crstal pieces for a large chandelier are to be cut according to the design shown. The graph shows how the design is created using polnomial functions. What do all the

More information

Time: 1 hour 30 minutes

Time: 1 hour 30 minutes Paper Reference(s) 666/0 Edecel GCE Core Mathematics C Bronze Level B Time: hour 0 minutes Materials required for eamination Mathematical Formulae (Green) Items included with question papers Nil Candidates

More information

Finding Asymptotes KEY

Finding Asymptotes KEY Unit: 0 Lesson: 0 Discontinuities Rational functions of the form f ( are undefined at values of that make 0. Wherever a rational function is undefined, a break occurs in its graph. Each such break is called

More information

Test 2 Version A. On my honor, I have neither given nor received inappropriate or unauthorized information at any time before or during this test.

Test 2 Version A. On my honor, I have neither given nor received inappropriate or unauthorized information at any time before or during this test. Student s Printed Name: Instructor: CUID: Section: Instructions: You are not permitted to use a calculator on any portion of this test. You are not allowed to use any textbook, notes, cell phone, laptop,

More information

Year 7: Long term plan

Year 7: Long term plan Year 7: Long term plan Year 7: Long term plan Unit Hours Getting into shape 6 Decimalisation 7 The universal language 6 Below zero 3 Natural numbers 5 What s your angle? 6 First periodic review We can

More information

Begin Notes Immediately. Look at Example Below!!! Glue in Notebook

Begin Notes Immediately. Look at Example Below!!! Glue in Notebook Begin Notes Immediately Look at Eample Below!!! Glue in Notebook Graphing Rational Functions The Parent Function can be transformed by using f( ) 1 f ( ) a k h What do a, h and k represent? a the vertical

More information

CS 111X - Fall Test 1

CS 111X - Fall Test 1 CS 111X - Fall 2016 - Test 1 1/9 Computing ID: CS 111X - Fall 2016 - Test 1 Name: Computing ID: On my honor as a student, I have neither given nor received unauthorized assistance on this exam. Signature:

More information

EXPLORING RATIONAL FUNCTIONS GRAPHICALLY

EXPLORING RATIONAL FUNCTIONS GRAPHICALLY EXPLORING RATIONAL FUNCTIONS GRAPHICALLY Precalculus Project Objectives: To find patterns in the graphs of rational functions. To construct a rational function using its properties. Required Information:

More information

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

Mth Test 3 Review Stewart 8e Chapter 4. For Test #3 study these problems, the examples in your notes, and the homework. For Test #3 study these problems, the eamples in your notes, and the homework. I. Absolute Etrema A function, continuous on a closed interval, always has an absolute maimum and absolute minimum. They occur

More information

The TK Solver Library

The TK Solver Library The TK Solver Library The TK Library is accessed via the Applications Menu. It is a collection of TK files. Some of the files contain a single user-defined function. Some contain just unit conversions.

More information

WRITING AND GRAPHING LINEAR EQUATIONS ON A FLAT SURFACE #1313

WRITING AND GRAPHING LINEAR EQUATIONS ON A FLAT SURFACE #1313 WRITING AND GRAPHING LINEAR EQUATIONS ON A FLAT SURFACE #11 SLOPE is a number that indicates the steepness (or flatness) of a line, as well as its direction (up or down) left to right. SLOPE is determined

More information

TABLE OF CONTENTS CHAPTER 1 LIMIT AND CONTINUITY... 26

TABLE OF CONTENTS CHAPTER 1 LIMIT AND CONTINUITY... 26 TABLE OF CONTENTS CHAPTER LIMIT AND CONTINUITY... LECTURE 0- BASIC ALGEBRAIC EXPRESSIONS AND SOLVING EQUATIONS... LECTURE 0- INTRODUCTION TO FUNCTIONS... 9 LECTURE 0- EXPONENTIAL AND LOGARITHMIC FUNCTIONS...

More information

LAB 2: DATA FILTERING AND NOISE REDUCTION

LAB 2: DATA FILTERING AND NOISE REDUCTION NAME: LAB SECTION: LAB 2: DATA FILTERING AND NOISE REDUCTION In this exercise, you will use Microsoft Excel to generate several synthetic data sets based on a simplified model of daily high temperatures

More information

What is the reasonable domain of this volume function? (c) Can there exist a volume of 0? (d) Estimate a maximum volume for the open box.

What is the reasonable domain of this volume function? (c) Can there exist a volume of 0? (d) Estimate a maximum volume for the open box. MA 15800 Lesson 11 Summer 016 E 1: From a rectangular piece of cardboard having dimensions 0 inches by 0 inches, an open bo is to be made by cutting out identical squares of area from each corner and,

More information

Module 7 Highlights. Mastered Reviewed. Sections ,

Module 7 Highlights. Mastered Reviewed. Sections , Sections 5.3 5.6, 6.1 6.6 Module 7 Highlights Andrea Hendricks Math 0098 Pre-college Algebra Topics Degree & leading coeff. of a univariate polynomial (5.3, Obj. 1) Simplifying a sum/diff. of two univariate

More information

4.6 Graphs of Other Trigonometric Functions

4.6 Graphs of Other Trigonometric Functions .6 Graphs of Other Trigonometric Functions Section.6 Graphs of Other Trigonometric Functions 09 Graph of the Tangent Function Recall that the tangent function is odd. That is, tan tan. Consequentl, the

More information

5.2 Graphing Polynomial Functions

5.2 Graphing Polynomial Functions Name Class Date 5.2 Graphing Polnomial Functions Essential Question: How do ou sketch the graph of a polnomial function in intercept form? Eplore 1 Investigating the End Behavior of the Graphs of Simple

More information

QUADRATIC FUNCTIONS Investigating Quadratic Functions in Vertex Form

QUADRATIC FUNCTIONS Investigating Quadratic Functions in Vertex Form QUADRATIC FUNCTIONS Investigating Quadratic Functions in Verte Form The two forms of a quadratic function that have been eplored previousl are: Factored form: f ( ) a( r)( s) Standard form: f ( ) a b c

More information

Abraham Clark High School ALGEBRA 2 SUMMER PACKET

Abraham Clark High School ALGEBRA 2 SUMMER PACKET Name: Abraham Clark High School ALGEBRA SUMMER PACKET INFORMATION/DIRECTIONS: All questions marked Practice must be complete and correct. You must return in September knowing how to do all the material

More information

Appendix 2: PREPARATION & INTERPRETATION OF GRAPHS

Appendix 2: PREPARATION & INTERPRETATION OF GRAPHS Appendi 2: PREPARATION & INTERPRETATION OF GRAPHS All of you should have had some eperience in plotting graphs. Some of you may have done this in the distant past. Some may have done it only in math courses

More information

Domain of Rational Functions

Domain of Rational Functions SECTION 46 RATIONAL FU NCTIONS SKI LLS OBJ ECTIVES Find the domain of a rational function Determine vertical, horizontal, and slant asmptotes of rational functions Graph rational functions CONCE PTUAL

More information

SLOPE A MEASURE OF STEEPNESS through 2.1.4

SLOPE A MEASURE OF STEEPNESS through 2.1.4 SLOPE A MEASURE OF STEEPNESS 2.1.2 through 2.1.4 Students used the equation = m + b to graph lines and describe patterns in previous courses. Lesson 2.1.1 is a review. When the equation of a line is written

More information

Table of Contents. Introduction to the Math Practice Series...iv Common Mathematics Symbols and Terms...1

Table of Contents. Introduction to the Math Practice Series...iv Common Mathematics Symbols and Terms...1 Table of Contents Table of Contents Introduction to the Math Practice Series...iv Common Mathematics Symbols and Terms...1 Chapter 1: Real Numbers...5 Real Numbers...5 Checking Progress: Real Numbers...8

More information

Graphing Calculator Graphing with the TI-86

Graphing Calculator Graphing with the TI-86 Graphing Calculator Graphing with the TI-86 I. Introduction The TI-86 has fift kes, man of which perform multiple functions when used in combination. Each ke has a smbol printed on its face. When a ke

More information

EXPLORE MATHEMATICS TEST

EXPLORE MATHEMATICS TEST EXPLORE MATHEMATICS TEST Table 4: The College Readiness The describe what students who score in the specified score ranges are likely to know and to be able to do. The help teachers identify ways of enhancing

More information

5. Minimizing Circuits

5. Minimizing Circuits 5. MINIMIZING CIRCUITS 46 5. Minimizing Circuits 5.. Minimizing Circuits. A circuit is minimized if it is a sum-of-products that uses the least number of products of literals and each product contains

More information

CSE100 Principles of Programming with C++

CSE100 Principles of Programming with C++ 1 Instructions You may work in pairs (that is, as a group of two) with a partner on this lab project if you wish or you may work alone. If you work with a partner, only submit one lab project with both

More information

x 16 d( x) 16 n( x) 36 d( x) zeros: x 2 36 = 0 x 2 = 36 x = ±6 Section Yes. Since 1 is a polynomial (of degree 0), P(x) =

x 16 d( x) 16 n( x) 36 d( x) zeros: x 2 36 = 0 x 2 = 36 x = ±6 Section Yes. Since 1 is a polynomial (of degree 0), P(x) = 9 CHAPTER POLYNOMIAL AND RATIONAL FUNCTIONS Section -. Yes. Since is a polynomial (of degree 0), P() P( ) is a rational function if P() is a polynomial.. A vertical asymptote is a vertical line a that

More information

MATH 2221A Mathematics Laboratory II

MATH 2221A Mathematics Laboratory II MATH A Mathematics Laboratory II Lab Assignment 4 Name: Student ID.: In this assignment, you are asked to run MATLAB demos to see MATLAB at work. The color version of this assignment can be found in your

More information

MAT 003 Brian Killough s Instructor Notes Saint Leo University

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

More information

5.6 Translations and Combinations of Transformations

5.6 Translations and Combinations of Transformations 5.6 Translations and Combinations of Transformations The highest tides in the world are found in the Ba of Fund. Tides in one area of the ba cause the water level to rise to 6 m above average sea level

More information

An Adaptive Stencil Linear Deviation Method for Wave Equations

An Adaptive Stencil Linear Deviation Method for Wave Equations 211 An Adaptive Stencil Linear Deviation Method for Wave Equations Kelly Hasler Faculty Sponsor: Robert H. Hoar, Department of Mathematics ABSTRACT Wave Equations are partial differential equations (PDEs)

More information

Tutorial Four: Linear Regression

Tutorial Four: Linear Regression Tutorial Four: Linear Regression Imad Pasha Chris Agostino February 25, 2015 1 Introduction When looking at the results of experiments, it is critically important to be able to fit curves to scattered

More information

3.6-Rational Functions & Their Graphs

3.6-Rational Functions & Their Graphs .6-Rational Functions & Their Graphs What is a Rational Function? A rational function is a function that is the ratio of two polynomial functions. This definition is similar to a rational number which

More information

Online Homework Hints and Help Extra Practice

Online Homework Hints and Help Extra Practice Evaluate: Homework and Practice Use a graphing calculator to graph the polnomial function. Then use the graph to determine the function s domain, range, and end behavior. (Use interval notation for the

More information

Course Number 432/433 Title Algebra II (A & B) H Grade # of Days 120

Course Number 432/433 Title Algebra II (A & B) H Grade # of Days 120 Whitman-Hanson Regional High School provides all students with a high- quality education in order to develop reflective, concerned citizens and contributing members of the global community. Course Number

More information

CK-12 PreCalculus Concepts 1

CK-12 PreCalculus Concepts 1 Chapter Functions and Graphs Answer Ke. Functions Families. - - - - - - - -. - - - - - - - - CK- PreCalculus Concepts Chapter Functions and Graphs Answer Ke. - - - - - - - -. - - - - - - - - 5. - - - -

More information

Check Skills You ll Need (For help, go to Lesson 1-2.) Evaluate each expression for the given value of x.

Check Skills You ll Need (For help, go to Lesson 1-2.) Evaluate each expression for the given value of x. A_3eSE_00X 0/6/005 :3 AM Page - Eploring Eponential Models Lesson Preview What You ll Learn To model eponential growth To model eponential deca... And Wh To model a car s depreciation, as in Eample 6 Check

More information

Number Sense. I CAN DO THIS! Third Grade Mathematics Name. Problems or Examples. 1.1 I can count, read, and write whole numbers to 10,000.

Number Sense. I CAN DO THIS! Third Grade Mathematics Name. Problems or Examples. 1.1 I can count, read, and write whole numbers to 10,000. Number Sense 1.1 I can count, read, and write whole numbers to 10,000. 1.2 I can compare and order numbers to 10,000. What is the smallest whole number you can make using the digits 4, 3, 9, and 1? Use

More information

Finite Math - J-term Homework. Section Inverse of a Square Matrix

Finite Math - J-term Homework. Section Inverse of a Square Matrix Section.5-77, 78, 79, 80 Finite Math - J-term 017 Lecture Notes - 1/19/017 Homework Section.6-9, 1, 1, 15, 17, 18, 1, 6, 9, 3, 37, 39, 1,, 5, 6, 55 Section 5.1-9, 11, 1, 13, 1, 17, 9, 30 Section.5 - Inverse

More information

Lab 4: Structured Programming I

Lab 4: Structured Programming I 4.1 Introduction Lab 4: Structured Programming I Lab this week is going to focus on selective structures and functions. 4.2 Resources The additional resources required for this assignment include: 0 Books:

More information

4 th Grade CRCT Study Guide

4 th Grade CRCT Study Guide 4 th Grade CRCT Study Guide Numbers and Operations 43% millions Place Value Whole numbers Hundred thousands Ten thousands thousands hundreds tens ones 7, 5 2 3, 8 2 5 Seven million, five hundred twenty-three

More information

QUADRATIC AND CUBIC GRAPHS

QUADRATIC AND CUBIC GRAPHS NAME SCHOOL INDEX NUMBER DATE QUADRATIC AND CUBIC GRAPHS KCSE 1989 2012 Form 3 Mathematics Working Space 1. 1989 Q22 P1 (a) Using the grid provided below draw the graph of y = -2x 2 + x + 8 for values

More information

Unit 7 Evaluation. Multiple-Choice. Evaluation 07 Second Year Algebra 1 (MTHH ) Name I.D. Number

Unit 7 Evaluation. Multiple-Choice. Evaluation 07 Second Year Algebra 1 (MTHH ) Name I.D. Number Name I.D. Number Unit 7 Evaluation Evaluation 07 Second Year Algebra (MTHH 09 09) This evaluation will cover the lessons in this unit. It is open book, meaning you can use your tetbook, syllabus, and other

More information

Experimental Design and Graphical Analysis of Data

Experimental Design and Graphical Analysis of Data Experimental Design and Graphical Analysis of Data A. Designing a controlled experiment When scientists set up experiments they often attempt to determine how a given variable affects another variable.

More information