MCSE-004. June 2013 Solutions Manual IGNOUUSER

Size: px
Start display at page:

Download "MCSE-004. June 2013 Solutions Manual IGNOUUSER"

Transcription

1 MCSE-004 June 2013 Solutions Manual IGNOUUSER

2 1 1. (a) Explain briefly what are the sources of error? Verify the associative property for the floating point numbers i.e prove: (a+b) c (a c) + b, where a =.5665E1, b=.5556e-1 and c=.5644e1 The sources of errors are: i) Input Errors : Errors which come from the experiments and any experiment can give results of only limited accuracy. ii) Algorithmic Errors : Such errors occurs where infinite algorithms are used. Exact results are expected only after an infinite number of steps. As this cannot be done in practice, the algorithm has to be stopped after a finite number of steps and the results are not exact. iii) Computational Errors : Such errors occurs when elementary operations such as multiplication and division are used the case when number of digits increases greatly so that the results cannot be held fully in computer registers. { } Addition/Subtraction of floating point numbers To add/subtract 2 floating point numbers, the exponents of the two numbers must be equal. If not the mantissa is shifted appropriately. Then the Mantissas are added or subtracted. After that the result is normalized and the exponent is appropriately adjusted. LHS (a+b) =.5665E E-1 =.5665E E1 = E1 (a+b) c = E E1 = E1 = E-1 RHS (a-c) =.5665E E1 = E1 = E-1 (a-c)+b = E E-1 = E-1 Clearly LHS RHS 1. (b) Find the root correct to three decimal places using Regula-Falsi method x 4 x 10 = 0. Given f(x) = x 4 x 10 f(1) = = -10 f(2) = = 4 Clearly f(1)*f(2)<0, root lies between 1 and 2

3 2 First approximation x 0 =1,x 1 =2 f(x 0 ) = -10, f(x 1 ) = 4 x 2 = x 0 ( ) ( ) f(x 0 ) = 1 - (-10) = ( ) f(x 2 )= Clearly f( )*f(2)<0, root lies between and 2 Second approximation x 3 = x 2 ( ) ( ) f(x 2 ) = f(x 3 ) = ( ) = ( ) Similarly we get, Third approximation, x 4 = Fourth approximation, x 5 = Fifth approximation, x 6 = As x 5 and x 6 are same upto 3 decimal places, hence required root is (c) Solve the following system of equations. 4x 1 + x 2 + x 3 = 4 x 1 + 4x 2 2x 3 = 4 3x 1 + 2x 2 4x 3 = 6 by the gauss elimination method with partial pivoting. Rewriting the given equations in matrix form, [ ] As the largest absolute value in left column i.e 4 is at top only so no need to interchange rows. Dividing 1 st row by 4, we get, R1-> R1/4 [ ]

4 3 Multiplying R1 with -1 and adding to R2, i.e, R2-> R2+(-1)*R1, we get [ ] Multiplying R1 with -3 and adding to R3,i.e, R3->R3+(-3)*R1, we get [ ] This completes the first pass. For the second pass we consider the sub matrix obtained by removing the first row and first column. As the largest value in the 2 nd column, i.e., 3.75 is at top of the sub matrix, no need to interchange rows. Dividing 2 nd row by 3.75, i.e., R2->R2/3.75 [ ] Multiplying R2 with and adding to R3,i.e, R3->R3+(-1.25)*R2, we get [ ] Dividing R3 with -4, i.e., R3->R3/(-4), we get [ ] Now, using back substitution, we have x 3 = -0.5 x 2 + (-0.6 x 3 ) = 0.8 x 2 = 0.5 and, x x x 3 = 1 x 1 = 0.75 Hence required solutions is x 1 = 0.75 x 2 = 0.5 x 3 = 0.5

5 4 1. (d)find the unique polynomial p(x) of degree 2 or less such that P(1) = 1, P(3) = 27, P(4) = 64 using Lagrange Interpolation formula. Given x 0 = 1, x 1 = 3, x 2 = 4 P(x 0 ) = 1, P(x 1 ) = 27, p(x 2 ) = 64 By Lagrange s Interpolation formula, we have P(x) = ( )( ) ( )( ) P(x 0) + ( )( ) ( )( ) P(x 1) + ( )( ) ( )( ) P(x 2) = ( )( ) 1 + ( )( ) ( )( ) 27 + ( )( ) ( )( ) ( )( ) 64 = ( )( ) 1 + ( )( ) 27 + ( )( ) 64 ( ) = [ ( ) ( )] = [ ] = [ ] = 1. (e) Calculate the value of the integral by i) Trapezoidal rule ii) Simpson s 1/3 rule. { Trapezoidal rule ( ) [(y 0 + y n ) + 2(y 1 + y 2 + y )] } Simpsons 1/3 rd rule ( ) [(y 0 + y n ) + 4(y 1 + y 3 + y ) + 2(y 2 + y 4 + y )] Divide the interval [4,5.2] into 6 equal sub-intervals, each of width = = 0.2 Values of y = logx are tabulated below. X y=logx

6 5 i) Trapezoidal rule I = (0.2/2)[( ) + 2( )] = 0.1*( *7.6207) = ii) Simpsons 1/3 rd rule I = (0.2/3)[( ) + 4( ) + 2( )] = *( * *3.0502) = (a) Find all the roots of cosx x 2 x = 0 to five decimal places. We will use Secant method to solve this problem, as the bisection method exits after 2 approximations in the interval [0,1] { Secant method If x n-1 and x n are the two approximation of the equation, then the next approximation x n+1 is given by } x n+1 = x n - ( ) ( ) ( ) ( ), n=1,2,3,... Given, f(x) = cosx x 2 x f(0) = 1 f(1) = Clearly f(0)*f(1) <0, hence the root lies between 0 and 1 By Secant Method, First approximation x 2 = 1 - ( ) = f(x 2 ) = Second approximation x 3 = f(x 3 ) = ( ) = ( ) Similarly, Third approximation x 4 =

7 6 Fourth approximation x 5 = Fifth approximation x 6 = Sixth approximation x 7 = As x 6 and x 7 are same upto 5 decimal places, the required root of the equation is (b) Solve the following system of equations x + y z = 0 -x + 3y = 2 x 2z = -3 by gauss-seidel method. Write its matrix form. The given system of equations can we written as x = -y + z y = (1/3)(2 + x) z = (1/2)(3 + x) Let initial approximation x 0, y 0, z 0 is 0,0,0 First approximation x (1) =0 y (1) =(1/3)*2 = 2/3 = z (1) =(1/2)*3 = 3/2 = 1.5 Second approximation x (2) = = y (2) =(1/3)*( ) = z (2) =(1/2)*( ) = Third approximation x (3) = = y (3) =(1/3)*( ) = z (3) =(1/2)*( ) =

8 7 Similarly we have, [x (4), x (4), x (4) ] = [0.9723, , ] [x (5), x (5), x (5) ] = [ , , ] [x (6), x (6), x (6) ] = [ , , ] [x (7), x (7), x (7) ] = [ , , ] As 6 th and 7 th approximations are same upto 3 decimal places, hence the required solution is x=0.999 y=0.999 z=1.999 Matrix Form of the given equation by Gauss Seidel Rewriting the given equations as x = -y + z -x + 3y = 2 x 2z = -3 The equation is in the form (D + L) x (k+1) = -Ux (k) + b, where D = [ ] L = [ ] U = [ ] b = [ ] x (k+1) = -(D + L) -1 Ux (k) + (D + L) -1 b

9 8 2. (c) Write the pitfalls in the Gauss Elimination method. i) Division by zero occurs. Consider the equations y x = 0 x 3y + 4z = 5 -x + 2y + 2z = -4 ii) As a 11 =0 hence divide by zero occur. Round off errors occur. 3. (a) In the table below the values of y are consecutive terms of a series of which the number 21.6 is the 6 th term. Find the First and tenth terms of the series. x y The forward difference table of above data is X Y ΔY Δ 2 Y Δ 3 Y Δ 4 Y By Newtons forward interpolation formula, f(x) = f(0) + (x-3) f(0) + ( )( ) ( ) + ( )( )( ) ( ) We have f(x) = (x-3) * ( )( ) * ( )( )( ) = x x 2 8.4x x 3 1.2x x 6.0 = 0.1x 3 f(1) = 0.1 * 1 3 = 0.1 f(10) = 0.1 * 10 3 = 100

10 9 3. (b) Evaluate the integral using Weddle s rule with h=0.5 { } Weddle rule ( ) [y 0 + 5y 1 + y 2 + 6y 3 + y 4 + 5y 5 + 2y )] Given h=0.5, f(x) = x 2 Values of y=f(x) is tabulated below x y I = (3*0.5/10)[1 + 5* * * *16] = 0.15 * 156 = (c) Given dy/dx = y x where y(0) = 2 Find y(0.1) and y(0.2) correct to four decimal places using Runge-Kutta Second Order Method. For y(0.1) x 0 =0,y 0 =2,h=0.1 k 1 = hf(x 0,y 0 ) =0.1*(2-0) = 0.2 k2=hf(x 0 +h,y 0 +k 1 ) = 0.21 =(1/2)(k1+k2) = Hence, x 1 = x 0 + h = 0.1 y 1 =y 0 + = For y(0.2) x 1 =0.1,y 1 =2.205,h=0.1 k 1 = hf(x 1,y 1 ) =0.1*( ) = k2=hf(x 1 +h,y 1 +k 1 ) = =(1/2)(k1+k2) = Hence, x 2 = x 1 + h = 0.2 y 2 =y 1 + =

11 10 4. (a) An experiment consist of three independent tosses of a fair coin. Let x=the no of heads. y=the no of head runs. z=the length of head runs. a head run being defined as consecutive occurance of at least two heads, its length then being the number of heads occurring together in three tosses of the coin. Find the probability function of i) x ii) y iii) z iv) x+y The possible outcomes in tossing coin 3 times ={HHH,HHT,HTH,HTT,THH,THT,TTH,TTT} i) No of heads p 0 = probability of getting 0 head = 1/8 p 1 =probability of getting 1 head = 3/8 p 2 =probability of getting 2 head = 3/8 p 3 = probability of getting 3 head = 1/8 Hence the probability generating function P x (s) = p 0 + p 1 s+ p 2 s = 1/8 + (3/8)s +(3/8)s 2 + (1/8)s 3 ***rest 2 parts still needs to be solved. I will try to update this. 4. (b) In partially destroyed lab record of an analysis of correlation data, the following results only are legible. Variance of x = 9 Regression Equations 8x 10y + 66 = 0 40x 18y = 214 What are: 1. The mean values of x and y 2. The correlation coefficient between x and y 3. The standard deviation of y Since both the lines of regression pass through the point, Solving (1) and (2) we get, Let 8X 10Y + 66 = 0 and 40X 18Y 214 = 0 be the lines of regression of y on x and x on y resp. rewriting the equations as,

12 11 Y = 0.8X X = 0.45Y regression coefficient of y on x is = 0.8 regression coefficient of x on y is = 0.45 Hence, r2 = 0.8 * 0.45 = 0.36 r = 0.6 (+ sign with square root is taken as regression coefficients are +ve) Given, Variance of X = Also, regression coefficient of y on x = = 0.8 * 3 / 0.6 = 4 4. (c) A bag contains 6 white and 9 black balls. Four balls are drawn at a time. Find the probability for the first draw to give 4 white and the second to give 4 black balls in each of the following cases: i) The balls are replaced before the second draw. ii) The balls are not replaced before the second draw. i) As the balls are replace before the second draw, the events are independent. Let P(W) denotes probability to draw 4 white balls in first draw P(B) denotes probability to draw 4 black balls in second draw Then, P(W) = 6/15 = 2/5 P(B) = 9/15 = 3/5 P(W B) = P(W)*P(B) = 6/5 ii) As the balls are not replace before the second draw, the events are dependent. P(W B) = P(W)*P(B W) = 2/5 * 9/11 = 18/55 5. (a) Solve the initial value problem to compute approximation for y(0.1), y(0.2) using Euler s method with h=0.1 dy/dt + 2y = 3e -4t, y(0) = 1 Compare with exact solution y(t) = Given, h=0.1, t 0 = 0, y 0 = 1, dy/dt = -2y + 3e -4t By Euler s method we have

13 12 y 1 = y 0 + hf(t 0,y 0 ) = *(-2+3) = 1.1 i.e, y(0.1) = 1.1 y 2 = y 1 + hf(x 1,y 1 ) = *( ) = i.e, y(0.2) = Now, using y(t) = we have, y(0.1) = and, y(0.2) = Error for y(0.1) = = Error for y(0.2) = = (b) Evaluate the integral I = using i) Composite trapezoidal rule ii) Composite simpson s rule with 2,4 and 8 equal subintervals. { Composite Trapezoidal Rule I T [f] = [first + last + 2*(sum of remaining)] Composite Simpson s rule I S [f] = [first + last + 2*(sum of even ordinates) + 4*(sum of remaining ordinates)] } Let h = 1/8 = Values of y=f(x) is tabulated below X Y f0 f1 f2 f3 f4 f5 f6 f7 f8 i) Composite Trapezoidal rule. I T [f] = [ *( )] = [ *4.8022] = ii) Composite Simpsons rule

14 13 with n=2 here h=0.5 and f0,f4 and f8 is to be used. I S [f] = [ *0.667] =0.1667[ ] = with n=4 here h=0.25 and f0,f2,f4,f6,f8 is to be used. I S [f] = [ * *( )] = [ ] = with n=8 here h=0.125 I S [f] = [ *( ) + 4*( )] = [ ] =

15 14 For more solutions keep visiting or contact me at

Computer programming course in the Department of Physics, University of Calcutta

Computer programming course in the Department of Physics, University of Calcutta Computer programming course in the Department of Physics, University of Calcutta Parongama Sen with inputs from Prof. S. Dasgupta and Dr. J. Saha and feedback from students Computer programming course

More information

Integration. Topic: Trapezoidal Rule. Major: General Engineering. Author: Autar Kaw, Charlie Barker. http://numericalmethods.eng.usf.

Integration. Topic: Trapezoidal Rule. Major: General Engineering. Author: Autar Kaw, Charlie Barker. http://numericalmethods.eng.usf. Integration Topic: Trapezoidal Rule Major: General Engineering Author: Autar Kaw, Charlie Barker 1 What is Integration Integration: The process of measuring the area under a function plotted on a graph.

More information

4.3 Lagrange Approximation

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

More information

10.2 ITERATIVE METHODS FOR SOLVING LINEAR SYSTEMS. The Jacobi Method

10.2 ITERATIVE METHODS FOR SOLVING LINEAR SYSTEMS. The Jacobi Method 578 CHAPTER 1 NUMERICAL METHODS 1. ITERATIVE METHODS FOR SOLVING LINEAR SYSTEMS As a numerical technique, Gaussian elimination is rather unusual because it is direct. That is, a solution is obtained after

More information

Numerical Analysis An Introduction

Numerical Analysis An Introduction Walter Gautschi Numerical Analysis An Introduction 1997 Birkhauser Boston Basel Berlin CONTENTS PREFACE xi CHAPTER 0. PROLOGUE 1 0.1. Overview 1 0.2. Numerical analysis software 3 0.3. Textbooks and monographs

More information

LAYOUT OF THE KEYBOARD

LAYOUT OF THE KEYBOARD Dr. Charles Hofmann, LaSalle hofmann@lasalle.edu Dr. Roseanne Hofmann, MCCC rhofman@mc3.edu ------------------------------------------------------------------------------------------------- DISPLAY CONTRAST

More information

Arithmetic and Algebra of Matrices

Arithmetic and Algebra of Matrices Arithmetic and Algebra of Matrices Math 572: Algebra for Middle School Teachers The University of Montana 1 The Real Numbers 2 Classroom Connection: Systems of Linear Equations 3 Rational Numbers 4 Irrational

More information

Factoring Polynomials and Solving Quadratic Equations

Factoring Polynomials and Solving Quadratic Equations Factoring Polynomials and Solving Quadratic Equations Math Tutorial Lab Special Topic Factoring Factoring Binomials Remember that a binomial is just a polynomial with two terms. Some examples include 2x+3

More information

Row Echelon Form and Reduced Row Echelon Form

Row Echelon Form and Reduced Row Echelon Form 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

More information

QUADRATIC EQUATIONS EXPECTED BACKGROUND KNOWLEDGE

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

More information

CHAPTER 5 Round-off errors

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

More information

a 11 x 1 + a 12 x 2 + + a 1n x n = b 1 a 21 x 1 + a 22 x 2 + + a 2n x n = b 2.

a 11 x 1 + a 12 x 2 + + a 1n x n = b 1 a 21 x 1 + a 22 x 2 + + a 2n x n = b 2. Chapter 1 LINEAR EQUATIONS 1.1 Introduction to linear equations A linear equation in n unknowns x 1, x,, x n is an equation of the form a 1 x 1 + a x + + a n x n = b, where a 1, a,..., a n, b are given

More information

Solution of Linear Systems

Solution of Linear Systems Chapter 3 Solution of Linear Systems In this chapter we study algorithms for possibly the most commonly occurring problem in scientific computing, the solution of linear systems of equations. We start

More information

Factoring and Applications

Factoring and Applications Factoring and Applications What is a factor? The Greatest Common Factor (GCF) To factor a number means to write it as a product (multiplication). Therefore, in the problem 48 3, 4 and 8 are called the

More information

Chapter 4 -- Decimals

Chapter 4 -- Decimals Chapter 4 -- Decimals $34.99 decimal notation ex. The cost of an object. ex. The balance of your bank account ex The amount owed ex. The tax on a purchase. Just like Whole Numbers Place Value - 1.23456789

More information

Taylor and Maclaurin Series

Taylor and Maclaurin Series Taylor and Maclaurin Series In the preceding section we were able to find power series representations for a certain restricted class of functions. Here we investigate more general problems: Which functions

More information

A Brief Review of Elementary Ordinary Differential Equations

A Brief Review of Elementary Ordinary Differential Equations 1 A Brief Review of Elementary Ordinary Differential Equations At various points in the material we will be covering, we will need to recall and use material normally covered in an elementary course on

More information

1.3 Algebraic Expressions

1.3 Algebraic Expressions 1.3 Algebraic Expressions A polynomial is an expression of the form: a n x n + a n 1 x n 1 +... + a 2 x 2 + a 1 x + a 0 The numbers a 1, a 2,..., a n are called coefficients. Each of the separate parts,

More information

Lesson 3. Numerical Integration

Lesson 3. Numerical Integration Lesson 3 Numerical Integration Last Week Defined the definite integral as limit of Riemann sums. The definite integral of f(t) from t = a to t = b. LHS: RHS: Last Time Estimate using left and right hand

More information

2.3. Finding polynomial functions. An Introduction:

2.3. Finding polynomial functions. An Introduction: 2.3. Finding polynomial functions. An Introduction: As is usually the case when learning a new concept in mathematics, the new concept is the reverse of the previous one. Remember how you first learned

More information

Calculate Highest Common Factors(HCFs) & Least Common Multiples(LCMs) NA1

Calculate Highest Common Factors(HCFs) & Least Common Multiples(LCMs) NA1 Calculate Highest Common Factors(HCFs) & Least Common Multiples(LCMs) NA1 What are the multiples of 5? The multiples are in the five times table What are the factors of 90? Each of these is a pair of factors.

More information

www.mathsbox.org.uk ab = c a If the coefficients a,b and c are real then either α and β are real or α and β are complex conjugates

www.mathsbox.org.uk ab = c a If the coefficients a,b and c are real then either α and β are real or α and β are complex conjugates Further Pure Summary Notes. Roots of Quadratic Equations For a quadratic equation ax + bx + c = 0 with roots α and β Sum of the roots Product of roots a + b = b a ab = c a If the coefficients a,b and c

More information

Math Review. for the Quantitative Reasoning Measure of the GRE revised General Test

Math Review. for the Quantitative Reasoning Measure of the GRE revised General Test Math Review for the Quantitative Reasoning Measure of the GRE revised General Test www.ets.org Overview This Math Review will familiarize you with the mathematical skills and concepts that are important

More information

General Framework for an Iterative Solution of Ax b. Jacobi s Method

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,

More information

Zeros of Polynomial Functions

Zeros of Polynomial Functions Zeros of Polynomial Functions The Rational Zero Theorem If f (x) = a n x n + a n-1 x n-1 + + a 1 x + a 0 has integer coefficients and p/q (where p/q is reduced) is a rational zero, then p is a factor of

More information

GEC320 COURSE COMPACT. Four hours per week for 15 weeks (60 hours)

GEC320 COURSE COMPACT. Four hours per week for 15 weeks (60 hours) GEC320 COURSE COMPACT Course Course code: GEC 320 Course title: Course status: Course Duration Numerical Methods (2 units) Compulsory Four hours per week for 15 weeks (60 hours) Lecturer Data Name: Engr.

More information

Zero: If P is a polynomial and if c is a number such that P (c) = 0 then c is a zero of P.

Zero: If P is a polynomial and if c is a number such that P (c) = 0 then c is a zero of P. MATH 11011 FINDING REAL ZEROS KSU OF A POLYNOMIAL Definitions: Polynomial: is a function of the form P (x) = a n x n + a n 1 x n 1 + + a x + a 1 x + a 0. The numbers a n, a n 1,..., a 1, a 0 are called

More information

Roots of Equations (Chapters 5 and 6)

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

More information

A Systematic Approach to Factoring

A Systematic Approach to Factoring A Systematic Approach to Factoring Step 1 Count the number of terms. (Remember****Knowing the number of terms will allow you to eliminate unnecessary tools.) Step 2 Is there a greatest common factor? Tool

More information

Homework until Test #2

Homework until Test #2 MATH31: Number Theory Homework until Test # Philipp BRAUN Section 3.1 page 43, 1. It has been conjectured that there are infinitely many primes of the form n. Exhibit five such primes. Solution. Five such

More information

Algebra Unpacked Content For the new Common Core standards that will be effective in all North Carolina schools in the 2012-13 school year.

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

More information

1.3 Polynomials and Factoring

1.3 Polynomials and Factoring 1.3 Polynomials and Factoring Polynomials Constant: a number, such as 5 or 27 Variable: a letter or symbol that represents a value. Term: a constant, variable, or the product or a constant and variable.

More information

Core Maths C1. Revision Notes

Core Maths C1. Revision Notes Core Maths C Revision Notes November 0 Core Maths C Algebra... Indices... Rules of indices... Surds... 4 Simplifying surds... 4 Rationalising the denominator... 4 Quadratic functions... 4 Completing the

More information

Binary Number System. 16. Binary Numbers. Base 10 digits: 0 1 2 3 4 5 6 7 8 9. Base 2 digits: 0 1

Binary Number System. 16. Binary Numbers. Base 10 digits: 0 1 2 3 4 5 6 7 8 9. Base 2 digits: 0 1 Binary Number System 1 Base 10 digits: 0 1 2 3 4 5 6 7 8 9 Base 2 digits: 0 1 Recall that in base 10, the digits of a number are just coefficients of powers of the base (10): 417 = 4 * 10 2 + 1 * 10 1

More information

South Carolina College- and Career-Ready (SCCCR) Pre-Calculus

South Carolina College- and Career-Ready (SCCCR) Pre-Calculus South Carolina College- and Career-Ready (SCCCR) Pre-Calculus Key Concepts Arithmetic with Polynomials and Rational Expressions PC.AAPR.2 PC.AAPR.3 PC.AAPR.4 PC.AAPR.5 PC.AAPR.6 PC.AAPR.7 Standards Know

More information

Application. Outline. 3-1 Polynomial Functions 3-2 Finding Rational Zeros of. Polynomial. 3-3 Approximating Real Zeros of.

Application. Outline. 3-1 Polynomial Functions 3-2 Finding Rational Zeros of. Polynomial. 3-3 Approximating Real Zeros of. Polynomial and Rational Functions Outline 3-1 Polynomial Functions 3-2 Finding Rational Zeros of Polynomials 3-3 Approximating Real Zeros of Polynomials 3-4 Rational Functions Chapter 3 Group Activity:

More information

Mean value theorem, Taylors Theorem, Maxima and Minima.

Mean value theorem, Taylors Theorem, Maxima and Minima. MA 001 Preparatory Mathematics I. Complex numbers as ordered pairs. Argand s diagram. Triangle inequality. De Moivre s Theorem. Algebra: Quadratic equations and express-ions. Permutations and Combinations.

More information

Polynomials. Key Terms. quadratic equation parabola conjugates trinomial. polynomial coefficient degree monomial binomial GCF

Polynomials. Key Terms. quadratic equation parabola conjugates trinomial. polynomial coefficient degree monomial binomial GCF Polynomials 5 5.1 Addition and Subtraction of Polynomials and Polynomial Functions 5.2 Multiplication of Polynomials 5.3 Division of Polynomials Problem Recognition Exercises Operations on Polynomials

More information

Abstract: We describe the beautiful LU factorization of a square matrix (or how to write Gaussian elimination in terms of matrix multiplication).

Abstract: We describe the beautiful LU factorization of a square matrix (or how to write Gaussian elimination in terms of matrix multiplication). MAT 2 (Badger, Spring 202) LU Factorization Selected Notes September 2, 202 Abstract: We describe the beautiful LU factorization of a square matrix (or how to write Gaussian elimination in terms of matrix

More information

5 Numerical Differentiation

5 Numerical Differentiation D. Levy 5 Numerical Differentiation 5. Basic Concepts This chapter deals with numerical approximations of derivatives. The first questions that comes up to mind is: why do we need to approximate derivatives

More information

3.1. Solving linear equations. Introduction. Prerequisites. Learning Outcomes. Learning Style

3.1. Solving linear equations. Introduction. Prerequisites. Learning Outcomes. Learning Style Solving linear equations 3.1 Introduction Many problems in engineering reduce to the solution of an equation or a set of equations. An equation is a type of mathematical expression which contains one or

More information

Solving DEs by Separation of Variables.

Solving DEs by Separation of Variables. Solving DEs by Separation of Variables. Introduction and procedure Separation of variables allows us to solve differential equations of the form The steps to solving such DEs are as follows: dx = gx).

More information

MEP Pupil Text 12. A list of numbers which form a pattern is called a sequence. In this section, straightforward sequences are continued.

MEP Pupil Text 12. A list of numbers which form a pattern is called a sequence. In this section, straightforward sequences are continued. MEP Pupil Text Number Patterns. Simple Number Patterns A list of numbers which form a pattern is called a sequence. In this section, straightforward sequences are continued. Worked Example Write down the

More information

Notes on Factoring. MA 206 Kurt Bryan

Notes on Factoring. MA 206 Kurt Bryan The General Approach Notes on Factoring MA 26 Kurt Bryan Suppose I hand you n, a 2 digit integer and tell you that n is composite, with smallest prime factor around 5 digits. Finding a nontrivial factor

More information

The correlation coefficient

The correlation coefficient The correlation coefficient Clinical Biostatistics The correlation coefficient Martin Bland Correlation coefficients are used to measure the of the relationship or association between two quantitative

More information

Thnkwell s Homeschool Precalculus Course Lesson Plan: 36 weeks

Thnkwell s Homeschool Precalculus Course Lesson Plan: 36 weeks Thnkwell s Homeschool Precalculus Course Lesson Plan: 36 weeks Welcome to Thinkwell s Homeschool Precalculus! We re thrilled that you ve decided to make us part of your homeschool curriculum. This lesson

More information

Rational Exponents. Squaring both sides of the equation yields. and to be consistent, we must have

Rational Exponents. Squaring both sides of the equation yields. and to be consistent, we must have 8.6 Rational Exponents 8.6 OBJECTIVES 1. Define rational exponents 2. Simplify expressions containing rational exponents 3. Use a calculator to estimate the value of an expression containing rational exponents

More information

Recall that two vectors in are perpendicular or orthogonal provided that their dot

Recall that two vectors in are perpendicular or orthogonal provided that their dot Orthogonal Complements and Projections Recall that two vectors in are perpendicular or orthogonal provided that their dot product vanishes That is, if and only if Example 1 The vectors in are orthogonal

More information

PUTNAM TRAINING POLYNOMIALS. Exercises 1. Find a polynomial with integral coefficients whose zeros include 2 + 5.

PUTNAM TRAINING POLYNOMIALS. Exercises 1. Find a polynomial with integral coefficients whose zeros include 2 + 5. PUTNAM TRAINING POLYNOMIALS (Last updated: November 17, 2015) Remark. This is a list of exercises on polynomials. Miguel A. Lerma Exercises 1. Find a polynomial with integral coefficients whose zeros include

More information

1 Cubic Hermite Spline Interpolation

1 Cubic Hermite Spline Interpolation cs412: introduction to numerical analysis 10/26/10 Lecture 13: Cubic Hermite Spline Interpolation II Instructor: Professor Amos Ron Scribes: Yunpeng Li, Mark Cowlishaw, Nathanael Fillmore 1 Cubic Hermite

More information

ALGEBRA REVIEW LEARNING SKILLS CENTER. Exponents & Radicals

ALGEBRA REVIEW LEARNING SKILLS CENTER. Exponents & Radicals ALGEBRA REVIEW LEARNING SKILLS CENTER The "Review Series in Algebra" is taught at the beginning of each quarter by the staff of the Learning Skills Center at UC Davis. This workshop is intended to be an

More information

How To Understand And Solve Algebraic Equations

How To Understand And Solve Algebraic Equations College Algebra Course Text Barnett, Raymond A., Michael R. Ziegler, and Karl E. Byleen. College Algebra, 8th edition, McGraw-Hill, 2008, ISBN: 978-0-07-286738-1 Course Description This course provides

More information

Friday, January 29, 2016 9:15 a.m. to 12:15 p.m., only

Friday, January 29, 2016 9:15 a.m. to 12:15 p.m., only ALGEBRA /TRIGONOMETRY The University of the State of New York REGENTS HIGH SCHOOL EXAMINATION ALGEBRA /TRIGONOMETRY Friday, January 9, 016 9:15 a.m. to 1:15 p.m., only Student Name: School Name: The possession

More information

Calculation example mean, median, midrange, mode, variance, and standard deviation for raw and grouped data

Calculation example mean, median, midrange, mode, variance, and standard deviation for raw and grouped data Calculation example mean, median, midrange, mode, variance, and standard deviation for raw and grouped data Raw data: 7, 8, 6, 3, 5, 5, 1, 6, 4, 10 Sorted data: 1, 3, 4, 5, 5, 6, 6, 7, 8, 10 Number of

More information

7 Gaussian Elimination and LU Factorization

7 Gaussian Elimination and LU Factorization 7 Gaussian Elimination and LU Factorization In this final section on matrix factorization methods for solving Ax = b we want to take a closer look at Gaussian elimination (probably the best known method

More information

FEGYVERNEKI SÁNDOR, PROBABILITY THEORY AND MATHEmATICAL

FEGYVERNEKI SÁNDOR, PROBABILITY THEORY AND MATHEmATICAL FEGYVERNEKI SÁNDOR, PROBABILITY THEORY AND MATHEmATICAL STATIsTICs 4 IV. RANDOm VECTORs 1. JOINTLY DIsTRIBUTED RANDOm VARIABLEs If are two rom variables defined on the same sample space we define the joint

More information

Data Analysis Tools. Tools for Summarizing Data

Data Analysis Tools. Tools for Summarizing Data Data Analysis Tools This section of the notes is meant to introduce you to many of the tools that are provided by Excel under the Tools/Data Analysis menu item. If your computer does not have that tool

More information

Chapter 4 Lecture Notes

Chapter 4 Lecture Notes Chapter 4 Lecture Notes Random Variables October 27, 2015 1 Section 4.1 Random Variables A random variable is typically a real-valued function defined on the sample space of some experiment. For instance,

More information

Alum Rock Elementary Union School District Algebra I Study Guide for Benchmark III

Alum Rock Elementary Union School District Algebra I Study Guide for Benchmark III Alum Rock Elementary Union School District Algebra I Study Guide for Benchmark III Name Date Adding and Subtracting Polynomials Algebra Standard 10.0 A polynomial is a sum of one ore more monomials. Polynomial

More information

Matrix Algebra. Some Basic Matrix Laws. Before reading the text or the following notes glance at the following list of basic matrix algebra laws.

Matrix Algebra. Some Basic Matrix Laws. Before reading the text or the following notes glance at the following list of basic matrix algebra laws. Matrix Algebra A. Doerr Before reading the text or the following notes glance at the following list of basic matrix algebra laws. Some Basic Matrix Laws Assume the orders of the matrices are such that

More information

CHAPTER 14 ORDINAL MEASURES OF CORRELATION: SPEARMAN'S RHO AND GAMMA

CHAPTER 14 ORDINAL MEASURES OF CORRELATION: SPEARMAN'S RHO AND GAMMA CHAPTER 14 ORDINAL MEASURES OF CORRELATION: SPEARMAN'S RHO AND GAMMA Chapter 13 introduced the concept of correlation statistics and explained the use of Pearson's Correlation Coefficient when working

More information

( ) FACTORING. x In this polynomial the only variable in common to all is x.

( ) FACTORING. x In this polynomial the only variable in common to all is x. FACTORING Factoring is similar to breaking up a number into its multiples. For example, 10=5*. The multiples are 5 and. In a polynomial it is the same way, however, the procedure is somewhat more complicated

More information

CALCULATIONS & STATISTICS

CALCULATIONS & STATISTICS CALCULATIONS & STATISTICS CALCULATION OF SCORES Conversion of 1-5 scale to 0-100 scores When you look at your report, you will notice that the scores are reported on a 0-100 scale, even though respondents

More information

MULTIVARIATE PROBABILITY DISTRIBUTIONS

MULTIVARIATE PROBABILITY DISTRIBUTIONS MULTIVARIATE PROBABILITY DISTRIBUTIONS. PRELIMINARIES.. Example. Consider an experiment that consists of tossing a die and a coin at the same time. We can consider a number of random variables defined

More information

CORRELATED TO THE SOUTH CAROLINA COLLEGE AND CAREER-READY FOUNDATIONS IN ALGEBRA

CORRELATED TO THE SOUTH CAROLINA COLLEGE AND CAREER-READY FOUNDATIONS IN ALGEBRA We Can Early Learning Curriculum PreK Grades 8 12 INSIDE ALGEBRA, GRADES 8 12 CORRELATED TO THE SOUTH CAROLINA COLLEGE AND CAREER-READY FOUNDATIONS IN ALGEBRA April 2016 www.voyagersopris.com Mathematical

More information

COLLEGE ALGEBRA. Paul Dawkins

COLLEGE ALGEBRA. Paul Dawkins COLLEGE ALGEBRA Paul Dawkins Table of Contents Preface... iii Outline... iv Preliminaries... Introduction... Integer Exponents... Rational Exponents... 9 Real Exponents...5 Radicals...6 Polynomials...5

More information

9.2 Summation Notation

9.2 Summation Notation 9. Summation Notation 66 9. Summation Notation In the previous section, we introduced sequences and now we shall present notation and theorems concerning the sum of terms of a sequence. We begin with a

More information

FOIL FACTORING. Factoring is merely undoing the FOIL method. Let s look at an example: Take the polynomial x²+4x+4.

FOIL FACTORING. Factoring is merely undoing the FOIL method. Let s look at an example: Take the polynomial x²+4x+4. FOIL FACTORING Factoring is merely undoing the FOIL method. Let s look at an example: Take the polynomial x²+4x+4. First we take the 3 rd term (in this case 4) and find the factors of it. 4=1x4 4=2x2 Now

More information

November 16, 2015. Interpolation, Extrapolation & Polynomial Approximation

November 16, 2015. Interpolation, Extrapolation & Polynomial Approximation Interpolation, Extrapolation & Polynomial Approximation November 16, 2015 Introduction In many cases we know the values of a function f (x) at a set of points x 1, x 2,..., x N, but we don t have the analytic

More information

Roots of Polynomials

Roots of Polynomials Roots of Polynomials (Com S 477/577 Notes) Yan-Bin Jia Sep 24, 2015 A direct corollary of the fundamental theorem of algebra is that p(x) can be factorized over the complex domain into a product a n (x

More information

Partial Fractions Examples

Partial Fractions Examples Partial Fractions Examples Partial fractions is the name given to a technique of integration that may be used to integrate any ratio of polynomials. A ratio of polynomials is called a rational function.

More information

Algebra Practice Problems for Precalculus and Calculus

Algebra Practice Problems for Precalculus and Calculus Algebra Practice Problems for Precalculus and Calculus Solve the following equations for the unknown x: 1. 5 = 7x 16 2. 2x 3 = 5 x 3. 4. 1 2 (x 3) + x = 17 + 3(4 x) 5 x = 2 x 3 Multiply the indicated polynomials

More information

Determinants can be used to solve a linear system of equations using Cramer s Rule.

Determinants can be used to solve a linear system of equations using Cramer s Rule. 2.6.2 Cramer s Rule Determinants can be used to solve a linear system of equations using Cramer s Rule. Cramer s Rule for Two Equations in Two Variables Given the system This system has the unique solution

More information

6.1 Add & Subtract Polynomial Expression & Functions

6.1 Add & Subtract Polynomial Expression & Functions 6.1 Add & Subtract Polynomial Expression & Functions Objectives 1. Know the meaning of the words term, monomial, binomial, trinomial, polynomial, degree, coefficient, like terms, polynomial funciton, quardrtic

More information

Numerical Methods for Engineers

Numerical Methods for Engineers Steven C. Chapra Berger Chair in Computing and Engineering Tufts University RaymondP. Canale Professor Emeritus of Civil Engineering University of Michigan Numerical Methods for Engineers With Software

More information

Higher Education Math Placement

Higher Education Math Placement Higher Education Math Placement Placement Assessment Problem Types 1. Whole Numbers, Fractions, and Decimals 1.1 Operations with Whole Numbers Addition with carry Subtraction with borrowing Multiplication

More information

Multiple regression - Matrices

Multiple regression - Matrices Multiple regression - Matrices This handout will present various matrices which are substantively interesting and/or provide useful means of summarizing the data for analytical purposes. As we will see,

More information

The Method of Least Squares

The Method of Least Squares The Method of Least Squares Steven J. Miller Mathematics Department Brown University Providence, RI 0292 Abstract The Method of Least Squares is a procedure to determine the best fit line to data; the

More information

Math Common Core Sampler Test

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

More information

Mathematics Course 111: Algebra I Part IV: Vector Spaces

Mathematics Course 111: Algebra I Part IV: Vector Spaces Mathematics Course 111: Algebra I Part IV: Vector Spaces D. R. Wilkins Academic Year 1996-7 9 Vector Spaces A vector space over some field K is an algebraic structure consisting of a set V on which are

More information

1 VECTOR SPACES AND SUBSPACES

1 VECTOR SPACES AND SUBSPACES 1 VECTOR SPACES AND SUBSPACES What is a vector? Many are familiar with the concept of a vector as: Something which has magnitude and direction. an ordered pair or triple. a description for quantities such

More information

BookTOC.txt. 1. Functions, Graphs, and Models. Algebra Toolbox. Sets. The Real Numbers. Inequalities and Intervals on the Real Number Line

BookTOC.txt. 1. Functions, Graphs, and Models. Algebra Toolbox. Sets. The Real Numbers. Inequalities and Intervals on the Real Number Line College Algebra in Context with Applications for the Managerial, Life, and Social Sciences, 3rd Edition Ronald J. Harshbarger, University of South Carolina - Beaufort Lisa S. Yocco, Georgia Southern University

More information

NUMERICAL ANALYSIS PROGRAMS

NUMERICAL ANALYSIS PROGRAMS NUMERICAL ANALYSIS PROGRAMS I. About the Program Disk This disk included with Numerical Analysis, Seventh Edition by Burden and Faires contains a C, FORTRAN, Maple, Mathematica, MATLAB, and Pascal program

More information

Some Lecture Notes and In-Class Examples for Pre-Calculus:

Some Lecture Notes and In-Class Examples for Pre-Calculus: Some Lecture Notes and In-Class Examples for Pre-Calculus: Section.7 Definition of a Quadratic Inequality A quadratic inequality is any inequality that can be put in one of the forms ax + bx + c < 0 ax

More information

Sect 6.7 - Solving Equations Using the Zero Product Rule

Sect 6.7 - Solving Equations Using the Zero Product Rule Sect 6.7 - Solving Equations Using the Zero Product Rule 116 Concept #1: Definition of a Quadratic Equation A quadratic equation is an equation that can be written in the form ax 2 + bx + c = 0 (referred

More information

Separable First Order Differential Equations

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

More information

MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS

MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS MATRIX ALGEBRA AND SYSTEMS OF EQUATIONS Systems of Equations and Matrices Representation of a linear system The general system of m equations in n unknowns can be written a x + a 2 x 2 + + a n x n b a

More information

December 4, 2013 MATH 171 BASIC LINEAR ALGEBRA B. KITCHENS

December 4, 2013 MATH 171 BASIC LINEAR ALGEBRA B. KITCHENS December 4, 2013 MATH 171 BASIC LINEAR ALGEBRA B KITCHENS The equation 1 Lines in two-dimensional space (1) 2x y = 3 describes a line in two-dimensional space The coefficients of x and y in the equation

More information

k, then n = p2α 1 1 pα k

k, then n = p2α 1 1 pα k Powers of Integers An integer n is a perfect square if n = m for some integer m. Taking into account the prime factorization, if m = p α 1 1 pα k k, then n = pα 1 1 p α k k. That is, n is a perfect square

More information

1 Review of Least Squares Solutions to Overdetermined Systems

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

More information

4. Continuous Random Variables, the Pareto and Normal Distributions

4. Continuous Random Variables, the Pareto and Normal Distributions 4. Continuous Random Variables, the Pareto and Normal Distributions A continuous random variable X can take any value in a given range (e.g. height, weight, age). The distribution of a continuous random

More information

3.2 The Factor Theorem and The Remainder Theorem

3.2 The Factor Theorem and The Remainder Theorem 3. The Factor Theorem and The Remainder Theorem 57 3. The Factor Theorem and The Remainder Theorem Suppose we wish to find the zeros of f(x) = x 3 + 4x 5x 4. Setting f(x) = 0 results in the polynomial

More information

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: 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

More information

Probability and Statistics Prof. Dr. Somesh Kumar Department of Mathematics Indian Institute of Technology, Kharagpur

Probability and Statistics Prof. Dr. Somesh Kumar Department of Mathematics Indian Institute of Technology, Kharagpur Probability and Statistics Prof. Dr. Somesh Kumar Department of Mathematics Indian Institute of Technology, Kharagpur Module No. #01 Lecture No. #15 Special Distributions-VI Today, I am going to introduce

More information

Factoring Polynomials

Factoring Polynomials UNIT 11 Factoring Polynomials You can use polynomials to describe framing for art. 396 Unit 11 factoring polynomials A polynomial is an expression that has variables that represent numbers. A number can

More information

MATH 10034 Fundamental Mathematics IV

MATH 10034 Fundamental Mathematics IV MATH 0034 Fundamental Mathematics IV http://www.math.kent.edu/ebooks/0034/funmath4.pdf Department of Mathematical Sciences Kent State University January 2, 2009 ii Contents To the Instructor v Polynomials.

More information

7. LU factorization. factor-solve method. LU factorization. solving Ax = b with A nonsingular. the inverse of a nonsingular matrix

7. LU factorization. factor-solve method. LU factorization. solving Ax = b with A nonsingular. the inverse of a nonsingular matrix 7. LU factorization EE103 (Fall 2011-12) factor-solve method LU factorization solving Ax = b with A nonsingular the inverse of a nonsingular matrix LU factorization algorithm effect of rounding error sparse

More information

Homework 2 Solutions

Homework 2 Solutions Homework Solutions Igor Yanovsky Math 5B TA Section 5.3, Problem b: Use Taylor s method of order two to approximate the solution for the following initial-value problem: y = + t y, t 3, y =, with h = 0.5.

More information

EXCEL SPREADSHEET MANUAL

EXCEL SPREADSHEET MANUAL EXCEL SPREADSHEET MANUAL to accompany CALCULUS FOR THE LIFE SCIENCES GREENWELL RITCHEY LIAL Paula Grafton Young Salem College J. Todd Lee Elon College Boston San Francisco New York London Toronto Sydney

More information