CS 221. Tuesday 8 November 2011
|
|
|
- Anne Bailey
- 9 years ago
- Views:
Transcription
1 CS 221 Tuesday 8 November 2011
2 Agenda 1. Announcements 2. Review: Solving Equations (Text ) 3. Root-finding with Excel ( Goal Seek, Text 6.5) 4. Example Root-finding Problems 5. The Fixed-point root-finding method 6. Error estimation in numerical methods 7. Review: Matrix Mathematics (Text Ch. 7) 8. Matrix Operations in MATLAB & Excel (Ch. 7)
3 1. Announcements Problem Set 4 out tonight, due Wed 16 Nov Root-finding problems Next Quiz: in Class, two weeks from today: Tuesday, 22 November
4 2. Review: Solving Equations Step one: get the equation into the form: f(x) = 0 Step two: determine what is the form of f(x) Step three: solve accordingly Linear: use algebra Nonlinear - polynomial MATLAB: use roots() preferred: gives all roots Excel: use Goal Seek Nonlinear - general MATLAB: use fzero() Excel: use Goal Seek
5 Determine the Form of f(x) Does f(x) contain powers of x higher than 1, or transcendental functions like cos, sin, exp, log, etc.? no: linear yes: see below Does f(x) contain noninteger powers of x, or transcendentals? no: nonlinear/polynomial yes: nonlinear/general
6 3 Root-Finding with Excel (Text Section 6.5) Simple tool: Goal Seek capability Tells Excel to vary the value of a cell containing the independent variable until value of the cell containing the function (dependent variable) is equal to a given value Steps: 1. Identify one cell to hold the value of the independent variable (call it x) 2. Fill in another cell with the formula for f(x) 3. Put an initial estimate of the root in the first cell 4. Select the goal seek function and set the target value to 0.
7 Goal Seek Example
8 Goal Seek Example
9 Use the MATLAB roots() function to solve polynomials. Because f(x) is a polynomial in this example, is easily solved in this way Create a vector for the coefficients of the polynomial: c = [ 3, -15, -20, 50 ]; Pass it to roots(): roots(c) Result is a column vector containing all roots of the polynomial real and complex
10 4. Example Problems Thermistors are resistors (electrical components) whose resistance varies with temperature, according to the Steinhart-Hart equation: 1/(T ) = C 1 + C 2 ln(r) + C 3 ln 3 (R) What resistance (in ohms) corresponds to a temperature of 15 C, if C 1 = 1.1E-3, C 2 = 2.3E-4, and C 3 =8.2E-8?
11 Get the Equation into the Right Form We are solving for R, so we want f(r) = 0: 1/(T ) = 1.1E E-4*log(R) + 8.2E-8*log(R)^3 1.1E E-4*log(R) + 8.2E-8*log(R)^3 (1/(T )) = 0 Use plotting tools (fplot) to determine the neighborhood of the root.
12 Example You are designing a water tank for a village in Africa. The tank is spherical, with a radius R meters. The volume of water it holds if filled to height h is given by: V = h 2 (3R-h)/3 To what height must the tank be filled to hold 30 m 3 of water?
13 Another Example Problem Consider a steam pipe of length L=25m and diameter d=0.1m. The pipe loses heat to the ambient air and surrounding surfaces by convection and radiation.
14 Another Example Problem The relationship between the surface temperature of the pipe, T S, and the total flow of heat per unit time, Q, is: Q = dl[h(t S T air ) + SB (T 4 S T 4 sur )]
15 Another Example Problem Where: h = 10 W/m 2 /K = 0.8 SB = 5.67 x 10-8 = Stefan-Bolzmann Constant T air = T sur = 298K If Q = W, what is the surface temperature (T S ) of the pipe? dl[h(t S T air ) + SB (T 4 S T 4 sur )] Q = 0
16 5. The Fixed-Point Method of Finding Roots (note: not in your text) A value x is a fixed-point of function g(x) iff g(x) = x Two basic concepts: 1. Rewriting an equation f(x) = 0 into fixed-point form: g(x) = x 2. Iterative method of finding a fixed point: while x i x i+1 x i+1 = g(x i ) end Actually, we will use x i x i+1 >
17 Rewriting Equations We need to rewrite so that f(x) = 0 if g(x) = x If f(x) contains an x term, rearrange to get it on one side: Example: x 2 2x 3 = 0 becomes (x 2 3)/2 = x Or, you can always just add x to both sides: f(x) = 0 if f(x) + x = x, so take g(x) = f(x) + x Example: x 2 2x 3 = 0 x 2 2x 3 + x = x x 2 x 3 = x
18 Rewriting Equations Do I hear you saying Wait a minute... In that example, f(x) = x 2 2x 3 = 0, the two methods yield two different g(x) s! g(x) = (x 2 3)/2 and g(x) = x 2 x 3 What gives??!!
19 Answer: Both g(x) s work
20 Rewriting Equations Goal: find x such that f(x) = 0. We are transforming this into the problem of finding x such that x = g(x) In such a way that f(x) = 0 for any such x There may be more than one g(x) for which this relationship holds! Graphically: we are looking for the intersection between the curves y = x and y = g(x)
21 The Iterative Method is Simple! Main loop: set x 0 = an estimate of the root While error estimate is too big: set x i+1 = g(x i ); update error estimate; end Approximate relative error estimate: a = (x i+1 x i )/x i+1
22 Convergence and Divergence Graphical depiction of the fixed-point method
23 Convergence and Divergence The fixed-point method is not guaranteed to converge
24 Convergence and Divergence The fixed-point method is not guaranteed to converge
25 Convergence and Divergence The fixed-point method is not guaranteed to converge
26 Convergence of Fixed-Point Iteration Convergence is determined by the magnitude of the slope: g(x i+1 ) g(x i ) x i+1 x i If slope < 1 then g(x i+1 ) will be closer to the fixed point than g(x i ) (the error decreases) Else g(x i+1 ) does not approach the fixed point (error increases or stays the same)
27 6. Error Estimation in Numerical Methods Numerical methods yield approximate results As engineers, we need to understand the sources of error in our results Round-off or truncation errors E.g., using 3.14 for pi Computational methods Order of operations can make a difference Rewrite formulas to avoid operations whose operands have very different magnitudes Inputs (e.g., measurements) Approximations of functions (Mont Blanc tunnel)
28 Definitions True value = approximation + error or: E t = true value approximation ( true error ) Note: requires knowledge of true value! t = E t /true value ( true relative error, usually given as a percentage) Example: measure a city block: 9999 cm True value: cm measure a pencil: 9 cm True value: 10 cm Error is 1 cm in both cases! Relative errors are very different: 0.01% vs 10%
29 Error Estimation When we use numerical methods, we usually don t know the true value! We are computing an approximation, and would like to know how close we are to the real value Typically we have to estimate the error as well! Best-effort approach: a = approximate error/approximate value ( approximate relative error ) For iterative methods: a = (current estimate previous estimate)/current estimate A bound s on the error may be specified as part of the problem Iterate until a < s
30 7. Review: Matrix Mathematics
Nonlinear Algebraic Equations Example
Nonlinear Algebraic Equations Example Continuous Stirred Tank Reactor (CSTR). Look for steady state concentrations & temperature. s r (in) p,i (in) i In: N spieces with concentrations c, heat capacities
4.3 Lagrange Approximation
206 CHAP. 4 INTERPOLATION AND POLYNOMIAL APPROXIMATION Lagrange Polynomial Approximation 4.3 Lagrange Approximation Interpolation means to estimate a missing function value by taking a weighted average
Solutions of Equations in One Variable. Fixed-Point Iteration II
Solutions of Equations in One Variable Fixed-Point Iteration II Numerical Analysis (9th Edition) R L Burden & J D Faires Beamer Presentation Slides prepared by John Carroll Dublin City University c 2011
x 2 + y 2 = 1 y 1 = x 2 + 2x y = x 2 + 2x + 1
Implicit Functions Defining Implicit Functions Up until now in this course, we have only talked about functions, which assign to every real number x in their domain exactly one real number f(x). The graphs
Aim. Decimal Search. An Excel 'macro' was used to do the calculations. A copy of the script can be found in Appendix A.
Aim The aim of this investigation is to use and compare three different methods of finding specific solutions to polynomials that cannot be solved algebraically. The methods that will be considered are;
The Method of Least Squares. Lectures INF2320 p. 1/80
The Method of Least Squares Lectures INF2320 p. 1/80 Lectures INF2320 p. 2/80 The method of least squares We study the following problem: Given n points (t i,y i ) for i = 1,...,n in the (t,y)-plane. How
Math 113 HW #7 Solutions
Math 3 HW #7 Solutions 35 0 Given find /dx by implicit differentiation y 5 + x 2 y 3 = + ye x2 Answer: Differentiating both sides with respect to x yields 5y 4 dx + 2xy3 + x 2 3y 2 ) dx = dx ex2 + y2x)e
Separable First Order Differential Equations
Separable First Order Differential Equations Form of Separable Equations which take the form = gx hy or These are differential equations = gxĥy, where gx is a continuous function of x and hy is a continuously
Mathematics Pre-Test Sample Questions A. { 11, 7} B. { 7,0,7} C. { 7, 7} D. { 11, 11}
Mathematics Pre-Test Sample Questions 1. Which of the following sets is closed under division? I. {½, 1,, 4} II. {-1, 1} III. {-1, 0, 1} A. I only B. II only C. III only D. I and II. Which of the following
6.4 Logarithmic Equations and Inequalities
6.4 Logarithmic Equations and Inequalities 459 6.4 Logarithmic Equations and Inequalities In Section 6.3 we solved equations and inequalities involving exponential functions using one of two basic strategies.
Algebra Unpacked Content For the new Common Core standards that will be effective in all North Carolina schools in the 2012-13 school year.
This document is designed to help North Carolina educators teach the Common Core (Standard Course of Study). NCDPI staff are continually updating and improving these tools to better serve teachers. Algebra
Review of Fundamental Mathematics
Review of Fundamental Mathematics As explained in the Preface and in Chapter 1 of your textbook, managerial economics applies microeconomic theory to business decision making. The decision-making tools
This unit will lay the groundwork for later units where the students will extend this knowledge to quadratic and exponential functions.
Algebra I Overview View unit yearlong overview here Many of the concepts presented in Algebra I are progressions of concepts that were introduced in grades 6 through 8. The content presented in this course
Linearly Independent Sets and Linearly Dependent Sets
These notes closely follow the presentation of the material given in David C. Lay s textbook Linear Algebra and its Applications (3rd edition). These notes are intended primarily for in-class presentation
1 Review of Least Squares Solutions to Overdetermined Systems
cs4: introduction to numerical analysis /9/0 Lecture 7: Rectangular Systems and Numerical Integration Instructor: Professor Amos Ron Scribes: Mark Cowlishaw, Nathanael Fillmore Review of Least Squares
The Method of Partial Fractions Math 121 Calculus II Spring 2015
Rational functions. as The Method of Partial Fractions Math 11 Calculus II Spring 015 Recall that a rational function is a quotient of two polynomials such f(x) g(x) = 3x5 + x 3 + 16x x 60. The method
Airport Planning and Design. Excel Solver
Airport Planning and Design Excel Solver Dr. Antonio A. Trani Professor of Civil and Environmental Engineering Virginia Polytechnic Institute and State University Blacksburg, Virginia Spring 2012 1 of
Readings this week. 1 Parametric Equations Supplement. 2 Section 10.1. 3 Sections 2.1-2.2. Professor Christopher Hoffman Math 124
Readings this week 1 Parametric Equations Supplement 2 Section 10.1 3 Sections 2.1-2.2 Precalculus Review Quiz session Thursday equations of lines and circles worksheet available at http://www.math.washington.edu/
Representation of functions as power series
Representation of functions as power series Dr. Philippe B. Laval Kennesaw State University November 9, 008 Abstract This document is a summary of the theory and techniques used to represent functions
Solving Quadratic Equations
9.3 Solving Quadratic Equations by Using the Quadratic Formula 9.3 OBJECTIVES 1. Solve a quadratic equation by using the quadratic formula 2. Determine the nature of the solutions of a quadratic equation
Roots of Equations (Chapters 5 and 6)
Roots of Equations (Chapters 5 and 6) Problem: given f() = 0, find. In general, f() can be any function. For some forms of f(), analytical solutions are available. However, for other functions, we have
MATHEMATICS FOR ENGINEERING BASIC ALGEBRA
MATHEMATICS FOR ENGINEERING BASIC ALGEBRA TUTORIAL 3 EQUATIONS This is the one of a series of basic tutorials in mathematics aimed at beginners or anyone wanting to refresh themselves on fundamentals.
Polynomial and Rational Functions
Polynomial and Rational Functions Quadratic Functions Overview of Objectives, students should be able to: 1. Recognize the characteristics of parabolas. 2. Find the intercepts a. x intercepts by solving
Numerical Methods for Differential Equations
Numerical Methods for Differential Equations Course objectives and preliminaries Gustaf Söderlind and Carmen Arévalo Numerical Analysis, Lund University Textbooks: A First Course in the Numerical Analysis
FREE FALL. Introduction. Reference Young and Freedman, University Physics, 12 th Edition: Chapter 2, section 2.5
Physics 161 FREE FALL Introduction This experiment is designed to study the motion of an object that is accelerated by the force of gravity. It also serves as an introduction to the data analysis capabilities
Roots of equation fx are the values of x which satisfy the above expression. Also referred to as the zeros of an equation
LECTURE 20 SOLVING FOR ROOTS OF NONLINEAR EQUATIONS Consider the equation f = 0 Roots of equation f are the values of which satisfy the above epression. Also referred to as the zeros of an equation f()
1.7. formulae and transposition. Introduction. Prerequisites. Learning Outcomes. Learning Style
formulae and transposition 1.7 Introduction formulae are used frequently in almost all aspects of engineering in order to relate a physical quantity to one or more others. Many well-known physical laws
ALGEBRA 2/TRIGONOMETRY
ALGEBRA /TRIGONOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION ALGEBRA /TRIGONOMETRY Tuesday, June 1, 011 1:15 to 4:15 p.m., only Student Name: School Name: Print your name
Method To Solve Linear, Polynomial, or Absolute Value Inequalities:
Solving Inequalities An inequality is the result of replacing the = sign in an equation with ,, or. For example, 3x 2 < 7 is a linear inequality. We call it linear because if the < were replaced with
Student Outcomes. Lesson Notes. Classwork. Exercises 1 3 (4 minutes)
Student Outcomes Students give an informal derivation of the relationship between the circumference and area of a circle. Students know the formula for the area of a circle and use it to solve problems.
Slope and Rate of Change
Chapter 1 Slope and Rate of Change Chapter Summary and Goal This chapter will start with a discussion of slopes and the tangent line. This will rapidly lead to heuristic developments of limits and the
Grade level: secondary Subject: mathematics Time required: 45 to 90 minutes
TI-Nspire Activity: Paint Can Dimensions By: Patsy Fagan and Angela Halsted Activity Overview Problem 1 explores the relationship between height and volume of a right cylinder, the height and surface area,
Math Placement Test Practice Problems
Math Placement Test Practice Problems The following problems cover material that is used on the math placement test to place students into Math 1111 College Algebra, Math 1113 Precalculus, and Math 2211
CURVE FITTING LEAST SQUARES APPROXIMATION
CURVE FITTING LEAST SQUARES APPROXIMATION Data analysis and curve fitting: Imagine that we are studying a physical system involving two quantities: x and y Also suppose that we expect a linear relationship
1 Lecture: Integration of rational functions by decomposition
Lecture: Integration of rational functions by decomposition into partial fractions Recognize and integrate basic rational functions, except when the denominator is a power of an irreducible quadratic.
DIFFERENTIABILITY OF COMPLEX FUNCTIONS. Contents
DIFFERENTIABILITY OF COMPLEX FUNCTIONS Contents 1. Limit definition of a derivative 1 2. Holomorphic functions, the Cauchy-Riemann equations 3 3. Differentiability of real functions 5 4. A sufficient condition
MATH 60 NOTEBOOK CERTIFICATIONS
MATH 60 NOTEBOOK CERTIFICATIONS Chapter #1: Integers and Real Numbers 1.1a 1.1b 1.2 1.3 1.4 1.8 Chapter #2: Algebraic Expressions, Linear Equations, and Applications 2.1a 2.1b 2.1c 2.2 2.3a 2.3b 2.4 2.5
Inner Product Spaces
Math 571 Inner Product Spaces 1. Preliminaries An inner product space is a vector space V along with a function, called an inner product which associates each pair of vectors u, v with a scalar u, v, and
Practice Final Math 122 Spring 12 Instructor: Jeff Lang
Practice Final Math Spring Instructor: Jeff Lang. Find the limit of the sequence a n = ln (n 5) ln (3n + 8). A) ln ( ) 3 B) ln C) ln ( ) 3 D) does not exist. Find the limit of the sequence a n = (ln n)6
Geometric Optics Converging Lenses and Mirrors Physics Lab IV
Objective Geometric Optics Converging Lenses and Mirrors Physics Lab IV In this set of lab exercises, the basic properties geometric optics concerning converging lenses and mirrors will be explored. The
EL-9650/9600c/9450/9400 Handbook Vol. 1
Graphing Calculator EL-9650/9600c/9450/9400 Handbook Vol. Algebra EL-9650 EL-9450 Contents. Linear Equations - Slope and Intercept of Linear Equations -2 Parallel and Perpendicular Lines 2. Quadratic Equations
Thermistor Basics. Application Note AN-TC11 Rev. A. May, 2013 Page 1 WHAT IS A THERMISTOR?
Thermistor Basics May, 2013 Page 1 WHAT IS A THERMISTOR? A thermistor is a resistance thermometer, or a resistor whose resistance is dependent on erature. The term is a combination of thermal and resistor.
General Framework for an Iterative Solution of Ax b. Jacobi s Method
2.6 Iterative Solutions of Linear Systems 143 2.6 Iterative Solutions of Linear Systems Consistent linear systems in real life are solved in one of two ways: by direct calculation (using a matrix factorization,
A three point formula for finding roots of equations by the method of least squares
A three point formula for finding roots of equations by the method of least squares Ababu Teklemariam Tiruneh 1 ; William N. Ndlela 1 ; Stanley J. Nkambule 1 1 Lecturer, Department of Environmental Health
MATH 132: CALCULUS II SYLLABUS
MATH 32: CALCULUS II SYLLABUS Prerequisites: Successful completion of Math 3 (or its equivalent elsewhere). Math 27 is normally not a sufficient prerequisite for Math 32. Required Text: Calculus: Early
FINAL EXAM SECTIONS AND OBJECTIVES FOR COLLEGE ALGEBRA
FINAL EXAM SECTIONS AND OBJECTIVES FOR COLLEGE ALGEBRA 1.1 Solve linear equations and equations that lead to linear equations. a) Solve the equation: 1 (x + 5) 4 = 1 (2x 1) 2 3 b) Solve the equation: 3x
Because the slope is, a slope of 5 would mean that for every 1cm increase in diameter, the circumference would increase by 5cm.
Measurement Lab You will be graphing circumference (cm) vs. diameter (cm) for several different circular objects, and finding the slope of the line of best fit using the CapStone program. Write out or
An Introduction to Applied Mathematics: An Iterative Process
An Introduction to Applied Mathematics: An Iterative Process Applied mathematics seeks to make predictions about some topic such as weather prediction, future value of an investment, the speed of a falling
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: Algebraic Concepts & Procedures Common Core Standard: A-APR.3: Identify zeros of polynomials
SOLVING TRIGONOMETRIC INEQUALITIES (CONCEPT, METHODS, AND STEPS) By Nghi H. Nguyen
SOLVING TRIGONOMETRIC INEQUALITIES (CONCEPT, METHODS, AND STEPS) By Nghi H. Nguyen DEFINITION. A trig inequality is an inequality in standard form: R(x) > 0 (or < 0) that contains one or a few trig functions
Rootfinding for Nonlinear Equations
> 3. Rootfinding Rootfinding for Nonlinear Equations > 3. Rootfinding Calculating the roots of an equation is a common problem in applied mathematics. f(x) = 0 (7.1) We will explore some simple numerical
Thermistor Calibration: T = F(R)
EAS 199B Spring 2010 Thermistor Calibration: T = F(R) Gerald Recktenwald [email protected] Introduction Thermistors are ceramic or polymer-based devices used to measure temperature. The resistance of a
Lecture 3: DC Analysis of Diode Circuits.
Whites, EE 320 Lecture 3 Page 1 of 10 Lecture 3: DC Analysis of Diode Circuits. We ll now move on to the DC analysis of diode circuits. Applications will be covered in following lectures. Let s consider
Objectives. Materials
Activity 4 Objectives Understand what a slope field represents in terms of Create a slope field for a given differential equation Materials TI-84 Plus / TI-83 Plus Graph paper Introduction One of the ways
Microeconomic Theory: Basic Math Concepts
Microeconomic Theory: Basic Math Concepts Matt Van Essen University of Alabama Van Essen (U of A) Basic Math Concepts 1 / 66 Basic Math Concepts In this lecture we will review some basic mathematical concepts
2013 MBA Jump Start Program
2013 MBA Jump Start Program Module 2: Mathematics Thomas Gilbert Mathematics Module Algebra Review Calculus Permutations and Combinations [Online Appendix: Basic Mathematical Concepts] 2 1 Equation of
3.3 Real Zeros of Polynomials
3.3 Real Zeros of Polynomials 69 3.3 Real Zeros of Polynomials In Section 3., we found that we can use synthetic division to determine if a given real number is a zero of a polynomial function. This section
Chapter 6 Work and Energy
Chapter 6 WORK AND ENERGY PREVIEW Work is the scalar product of the force acting on an object and the displacement through which it acts. When work is done on or by a system, the energy of that system
Math 2400 - Numerical Analysis Homework #2 Solutions
Math 24 - Numerical Analysis Homework #2 Solutions 1. Implement a bisection root finding method. Your program should accept two points, a tolerance limit and a function for input. It should then output
The KaleidaGraph Guide to Curve Fitting
The KaleidaGraph Guide to Curve Fitting Contents Chapter 1 Curve Fitting Overview 1.1 Purpose of Curve Fitting... 5 1.2 Types of Curve Fits... 5 Least Squares Curve Fits... 5 Nonlinear Curve Fits... 6
EQUATIONS and INEQUALITIES
EQUATIONS and INEQUALITIES Linear Equations and Slope 1. Slope a. Calculate the slope of a line given two points b. Calculate the slope of a line parallel to a given line. c. Calculate the slope of a line
ax 2 by 2 cxy dx ey f 0 The Distance Formula The distance d between two points (x 1, y 1 ) and (x 2, y 2 ) is given by d (x 2 x 1 )
SECTION 1. The Circle 1. OBJECTIVES The second conic section we look at is the circle. The circle can be described b using the standard form for a conic section, 1. Identif the graph of an equation as
CHAPTER FIVE. Solutions for Section 5.1. Skill Refresher. Exercises
CHAPTER FIVE 5.1 SOLUTIONS 265 Solutions for Section 5.1 Skill Refresher S1. Since 1,000,000 = 10 6, we have x = 6. S2. Since 0.01 = 10 2, we have t = 2. S3. Since e 3 = ( e 3) 1/2 = e 3/2, we have z =
NTC Thermistor theory TABLE OF CONTENTS
NTC Thermistor theory TABLE OF CONTENTS NTC Thermistor Theory................. Chip Configuration............................ Volume Resistivity-............................3 Resistance..................................
DERIVATIVES AS MATRICES; CHAIN RULE
DERIVATIVES AS MATRICES; CHAIN RULE 1. Derivatives of Real-valued Functions Let s first consider functions f : R 2 R. Recall that if the partial derivatives of f exist at the point (x 0, y 0 ), then we
Solutions to Homework 5
Solutions to Homework 5 1. Let z = f(x, y) be a twice continously differentiable function of x and y. Let x = r cos θ and y = r sin θ be the equations which transform polar coordinates into rectangular
CHAPTER 5 Round-off errors
CHAPTER 5 Round-off errors In the two previous chapters we have seen how numbers can be represented in the binary numeral system and how this is the basis for representing numbers in computers. Since any
Functions: Piecewise, Even and Odd.
Functions: Piecewise, Even and Odd. MA161/MA1161: Semester 1 Calculus. Prof. Götz Pfeiffer School of Mathematics, Statistics and Applied Mathematics NUI Galway September 21-22, 2015 Tutorials, Online Homework.
Pressure in Fluids. Introduction
Pressure in Fluids Introduction In this laboratory we begin to study another important physical quantity associated with fluids: pressure. For the time being we will concentrate on static pressure: pressure
Correlation. What Is Correlation? Perfect Correlation. Perfect Correlation. Greg C Elvers
Correlation Greg C Elvers What Is Correlation? Correlation is a descriptive statistic that tells you if two variables are related to each other E.g. Is your related to how much you study? When two variables
CHAPTER 2. Eigenvalue Problems (EVP s) for ODE s
A SERIES OF CLASS NOTES FOR 005-006 TO INTRODUCE LINEAR AND NONLINEAR PROBLEMS TO ENGINEERS, SCIENTISTS, AND APPLIED MATHEMATICIANS DE CLASS NOTES 4 A COLLECTION OF HANDOUTS ON PARTIAL DIFFERENTIAL EQUATIONS
Solutions to Homework 10
Solutions to Homework 1 Section 7., exercise # 1 (b,d): (b) Compute the value of R f dv, where f(x, y) = y/x and R = [1, 3] [, 4]. Solution: Since f is continuous over R, f is integrable over R. Let x
Homework # 3 Solutions
Homework # 3 Solutions February, 200 Solution (2.3.5). Noting that and ( + 3 x) x 8 = + 3 x) by Equation (2.3.) x 8 x 8 = + 3 8 by Equations (2.3.7) and (2.3.0) =3 x 8 6x2 + x 3 ) = 2 + 6x 2 + x 3 x 8
Integration of a fin experiment into the undergraduate heat transfer laboratory
Integration of a fin experiment into the undergraduate heat transfer laboratory H. I. Abu-Mulaweh Mechanical Engineering Department, Purdue University at Fort Wayne, Fort Wayne, IN 46805, USA E-mail: [email protected]
1 Review of Newton Polynomials
cs: introduction to numerical analysis 0/0/0 Lecture 8: Polynomial Interpolation: Using Newton Polynomials and Error Analysis Instructor: Professor Amos Ron Scribes: Giordano Fusco, Mark Cowlishaw, Nathanael
1.7 Graphs of Functions
64 Relations and Functions 1.7 Graphs of Functions In Section 1.4 we defined a function as a special type of relation; one in which each x-coordinate was matched with only one y-coordinate. We spent most
The Distance Formula and the Circle
10.2 The Distance Formula and the Circle 10.2 OBJECTIVES 1. Given a center and radius, find the equation of a circle 2. Given an equation for a circle, find the center and radius 3. Given an equation,
Experiment #1, Analyze Data using Excel, Calculator and Graphs.
Physics 182 - Fall 2014 - Experiment #1 1 Experiment #1, Analyze Data using Excel, Calculator and Graphs. 1 Purpose (5 Points, Including Title. Points apply to your lab report.) Before we start measuring
Partial Fractions. Combining fractions over a common denominator is a familiar operation from algebra:
Partial Fractions Combining fractions over a common denominator is a familiar operation from algebra: From the standpoint of integration, the left side of Equation 1 would be much easier to work with than
3 e) x f) 2. Precalculus Worksheet P.1. 1. Complete the following questions from your textbook: p11: #5 10. 2. Why would you never write 5 < x > 7?
Precalculus Worksheet P.1 1. Complete the following questions from your tetbook: p11: #5 10. Why would you never write 5 < > 7? 3. Why would you never write 3 > > 8? 4. Describe the graphs below using
You must have: Ruler graduated in centimetres and millimetres, protractor, compasses, pen, HB pencil, eraser, calculator. Tracing paper may be used.
Write your name here Surname Other names Pearson Edexcel International GCSE Mathematics A Paper 3HR Centre Number Tuesday 6 January 015 Afternoon Time: hours Candidate Number Higher Tier Paper Reference
Problem Set V Solutions
Problem Set V Solutions. Consider masses m, m 2, m 3 at x, x 2, x 3. Find X, the C coordinate by finding X 2, the C of mass of and 2, and combining it with m 3. Show this is gives the same result as 3
G.A. Pavliotis. Department of Mathematics. Imperial College London
EE1 MATHEMATICS NUMERICAL METHODS G.A. Pavliotis Department of Mathematics Imperial College London 1. Numerical solution of nonlinear equations (iterative processes). 2. Numerical evaluation of integrals.
DRAFT. Algebra 1 EOC Item Specifications
DRAFT Algebra 1 EOC Item Specifications The draft Florida Standards Assessment (FSA) Test Item Specifications (Specifications) are based upon the Florida Standards and the Florida Course Descriptions as
Eigenvalues, Eigenvectors, and Differential Equations
Eigenvalues, Eigenvectors, and Differential Equations William Cherry April 009 (with a typo correction in November 05) The concepts of eigenvalue and eigenvector occur throughout advanced mathematics They
*X100/12/02* X100/12/02. MATHEMATICS HIGHER Paper 1 (Non-calculator) MONDAY, 21 MAY 1.00 PM 2.30 PM NATIONAL QUALIFICATIONS 2012
X00//0 NTIONL QULIFITIONS 0 MONY, MY.00 PM.0 PM MTHEMTIS HIGHER Paper (Non-calculator) Read carefully alculators may NOT be used in this paper. Section Questions 0 (40 marks) Instructions for completion
Examples of Functions
Examples of Functions In this document is provided examples of a variety of functions. The purpose is to convince the beginning student that functions are something quite different than polynomial equations.
FRICTION, WORK, AND THE INCLINED PLANE
FRICTION, WORK, AND THE INCLINED PLANE Objective: To measure the coefficient of static and inetic friction between a bloc and an inclined plane and to examine the relationship between the plane s angle
Thursday 8 November 2012 Afternoon
H Thursday 8 November 2012 Afternoon GCSE MATHEMATICS B J567/04 Paper 4 (Higher Tier) *J517181112* Candidates answer on the Question Paper. OCR supplied materials: None Other materials required: Geometrical
Math Common Core Sampler Test
High School Algebra Core Curriculum Math Test Math Common Core Sampler Test Our High School Algebra sampler covers the twenty most common questions that we see targeted for this level. For complete tests
Session 7 Bivariate Data and Analysis
Session 7 Bivariate Data and Analysis Key Terms for This Session Previously Introduced mean standard deviation New in This Session association bivariate analysis contingency table co-variation least squares
Tuesday 6 November 2012 Morning
H Tuesday 6 November 2012 Morning GCSE MATHEMATICS A A502/02 Unit B (Higher Tier) *A516821112* Candidates answer on the Question Paper. OCR supplied materials: None Other materials required: Geometrical
A power series about x = a is the series of the form
POWER SERIES AND THE USES OF POWER SERIES Elizabeth Wood Now we are finally going to start working with a topic that uses all of the information from the previous topics. The topic that we are going to
Solving Equations and Inequalities
Solving Equations and Inequalities Akram Kalantari Department of Mathematics Yazd University Akram Kalantari Solving Equations and Inequalities 1 / 22 1 Solving for x 2 Declaring Variables 3 Solving Equations
1 Error in Euler s Method
1 Error in Euler s Method Experience with Euler s 1 method raises some interesting questions about numerical approximations for the solutions of differential equations. 1. What determines the amount of
QUADRATIC EQUATIONS EXPECTED BACKGROUND KNOWLEDGE
MODULE - 1 Quadratic Equations 6 QUADRATIC EQUATIONS In this lesson, you will study aout quadratic equations. You will learn to identify quadratic equations from a collection of given equations and write
APPLIED MATHEMATICS ADVANCED LEVEL
APPLIED MATHEMATICS ADVANCED LEVEL INTRODUCTION This syllabus serves to examine candidates knowledge and skills in introductory mathematical and statistical methods, and their applications. For applications
Algebra. Exponents. Absolute Value. Simplify each of the following as much as possible. 2x y x + y y. xxx 3. x x x xx x. 1. Evaluate 5 and 123
Algebra Eponents Simplify each of the following as much as possible. 1 4 9 4 y + y y. 1 5. 1 5 4. y + y 4 5 6 5. + 1 4 9 10 1 7 9 0 Absolute Value Evaluate 5 and 1. Eliminate the absolute value bars from
