Hence a root lies between 1 and 2. Since f a is negative and f(x 0 ) is positive The root lies between a and x 0 i.e. 1 and 1.

Size: px
Start display at page:

Download "Hence a root lies between 1 and 2. Since f a is negative and f(x 0 ) is positive The root lies between a and x 0 i.e. 1 and 1."

Transcription

1 The Bisection method or BOLZANO s method or Interval halving method: Find the positive root of x 3 x = 1 correct to four decimal places by bisection method Let f x = x 3 x 1 Here f 0 = 1 = ve, f 1 = ve, f 2 = 5 = +ve Hence a root lies between 1 and 2 Here a = 1 and b = 2 a + b Here x 0 = = = 15, f x = f(15) = 0875 = +ve Since f a is negative and f(x 0 ) is positive The root lies between a and x 0 ie 1 and 15, put b = x 0 x 1 = = 125, f 125 = = ve 2 The root lies between x 1 and b ie 125 and 15, put a = x x 2 = = 1375, f 1375 = = +ve 2 Therefore the root lies between a and x 2 ie 125 and 1375 Proceeding like this and these values are put in a tabular form as follows i a b x n f(x n ) Since the values in 13 th and 14 th iteration are same, the root is 13248

2 Find the positive root of x cos x = 0 by bisection method Let f x = x cos x Here f 0 = 1 = ve, f 1 = 1 cos 1 = = +ve Hence a root lies between 0 and 1 Here a = 0 and b = 1 a + b Here x 0 = = = 05, f x = f 05 = = ve Since f x 0 is negative and f(b) is positive The root lies between x 0 and b ie 05 and 1, put a = x 0 x 1 = = 075, f 075 = = +ve 2 The root lies between a and x 1 ie 05 and 075, put b = x x 2 = = 0625, f 0625 = 0186 = ve 2 Therefore the root lies between x 2 and b ie 0625 and 075 Proceeding like this and these values are put in a tabular form as follows i a b x n f(x n ) Since the value of the last column is zero in last column of 11 th iteration, the root is Regula Falsi method or False position method: Solve for a positive root of x 3 4x + 1 = 0 by Regula Falsi method Let f x = x 3 4x + 1 Here f 0 = 1 = +ve, f 1 = 2 = ve A root lies between 0 and 1 Here a = 0 and b = 1

3 af b bf a x 1 = f b f a = 0 f 1 1 f 0 f 1 f 0 = = f x 1 = f = = ve Hence the root lies between 0 and ie a = 0 and b = (Since f 0 = +ve and f = ve) x 2 = af b bf a f b f a = 0 f f 0 f f 0 = f = = ve Hence the root lies between 0 and ie a = 0 and b = (Since f 0 = +ve and f = ve) Continuing in the same way and the values are put in a table below i a b f(a) f(b) x n f(x n ) Since the value of the last column of 4 th iteration is zero, the root is Find a positive root of xe x = 2 by the method of false position Let f x = xe x 2 Here f 0 = 2 = ve, f 1 = = +ve A root lies between 0 and 1 Here a = 0 and b = 1 x 1 = af b bf a f b f a = 0 f 1 1 f 0 f 1 f 0 = = f x 1 = f = = ve Hence the root lies between 0 and ie a = 0 and b = (Since f 0 = +ve and f = ve) x 2 = af b bf a f b f a = 0 f f 0 f f 0 = 02571

4 f = = ve Hence the root lies between 0 and ie a = 0 and b = (Since f 0 = +ve and f = ve) Continuing in the same way and the values are put in a table below i a b f(a) f(b) x n f(x n ) Since the value of the x n column of 5 th and 6 th iteration are same, the root is up to four decimal places Gauss Jacobi method: Solve by Gauss Jacobi method, the system 12x + y + z = 31,2 x + 8y z = 24, 3x + 4y + 10z = < 12, < 8, < 10 Therefore the given equations are diagonally dominant, so we can use Gauss Jacobi method Proceeding in the same manner and writing the solutions in the tabular form we get i x y z

5 Since the values in 7 th and 8 th iteration are same, the solution is x = 2, y = 3, z = 4 up to four decimal places Solve by Gauss Jacobi method, the system 9x y + 2z = 9, x + 10y 2z = 15, 2x 2y 13z = = 3 < 9, < 10, < 13 Therefore the given equations are diagonally dominant, so we can use Gauss Jacobi method 1 st iteration x = 1 (9 + y 2z) 9 y = 1 (15 x + 2z) 10 z = 1 (17 + 2x 2y) 13 x (1) = = 1 y (1) = = 15 z (1) = (0) 2(0) = nd iteration x (2) = = 08761

6 y (2) = = z (2) = (1) 2(15) = Proceeding in the same manner and writing the solutions in the tabular form we get i x y z Since the values in 8 th and 9 th iteration are same, the solution is x = 09174, y = 16473, z = up to four decimal places Gauss Seidel method Solve by Gauss Seidel method, the system 12x + y + z = 31,2 x + 8y z = 24, 3x + 4y + 10z = < 12, < 8, < 10 Therefore the given equations are diagonally dominant, so we can use Gauss Seidel method x = y z y = x + z

7 z = x 4y 1 st iteration x = = y = (0) = z = (25833) 4(23542) = nd iteration x = = y = 1 8 z = (20469) = (20469) 4(29987) = Proceeding in the same manner and writing the solutions in the tabular form we get i x y z Since the values in 5 th and 6 th iteration are same, the solution is x = 2, y = 3, z = 4 up to four decimal places Solve by Gauss Seidel method, the system 9x y + 2z = 9, x + 10y 2z = 15, 2x 2y 13z = 17

8 1 + 2 = 3 < 9, < 10, < 13 Therefore the given equations are diagonally dominant, so we can use Gauss Seidel method 1 st iteration x = 1 (9 + y 2z) 9 y = 1 (15 x + 2z) 10 z = 1 (17 + 2x 2y) 13 x (1) = = 1 y (1) = = 14 z (1) = (1) 2(14) = nd iteration x (2) = = y (2) = = z (2) = (08786) 2(16614) = Proceeding in the same manner and writing the solutions in the tabular form we get i x y z

9 Since the values in 5 th and 6 th iteration are same, the solution is x = 09174, y = 16473, z = up to four decimal places Gauss Elimination method Solve by Gauss Elimination method, the system 12x + y + z = 31,2 x + 8y z = 24, 3x + 4y + 10z = 58 ~ ~ A: B = R 2 R R 1 R 3 R R 1 R 3 R R 2 12x + y + z = y 117z = z = 4124 z = = 4 783y = 1883 y = = 3 Therefore the solution is x = 2, y = 3, z = 4 Solve by Gauss Elimination method, the system 12x = 31 x = = 2 9x y + 2z = 9, x + 10y 2z = 15, 2x 2y 13z = 17 A: B =

10 ~ R 2 R R 1 R 3 R R 1 ~ R 3 R R 2 9x y + 2z = y 22222z = z = 4124 z = = y = 14 y = 9x = 9 x = = = Therefore the solution is x = 09174, y = 16473, z = Gauss Jordon method Solve by Gauss Jordon method, the system 12x + y + z = 31,2 x + 8y z = 24, 3x + 4y + 10z = 58 ~ ~ ~ A: B = R 2 R R 1 R 3 R R 1 R 1 R R 2 R 3 R R 2 R 1 R R 3 R 2 R R 3

11 Therefore the solution is x = 2, y = 3, z = 4 Solve by Gauss Jordon method, the system 12x = 24 x = = 2 783y = 2351 y = = z = 4124 z = = 4 9x y + 2z = 9, x + 10y 2z = 15, 2x 2y 13z = 17 A: B = ~ R 2 R R 1 R 3 R R 1 ~ ~ R 1 R R 2 R 3 R R 2 R 1 R R 3 R 2 R R 3 9x = x = = y = y = = z = z = = Therefore the solution is x = 09174, y = 16473, z = 11954

12 NEWTON S METHOD OR NEWTON-RAPHSON METHOD Find the positive root of x 4 x = 10 correct to three decimal places using Newton- Raphson method Solution : Let f x = x 4 x 10 = 0 Now, f 0 = = 10 f 1 = = 10 f 2 = = +4 Therefore the root lies between 1 & 2 Let us take x 0 = 2 {Near to zero} The Newton- Raphson formula is ve ve +ve x n+1 = x n f x n f x n 1 Let f x = x 4 x 10 and f 1 x = 4 x 3 1 x 1 = x 0 f x 0 f x 0 x 1 = 2 f 2 f 2 x 1 = x 1 = x 1 = x 2 = x 1 f x 1 f x 1 x 2 = 2 f f x 2 = x 2 = x 2 = 1856 x 3 = x 2 f x 2 f x 2

13 x 3 = 1856 f 1856 f 1856 x 3 = x 3 = x 3 = 1856 The root of the equation x 4 x = 10 is 1856 Using Newton s iterative method to find the root between 0 and 1 of x 3 = 6x 4 correct to three decimal places Solution : Let f x = x 3 6x + 4 = 0 Now, f 0 = = +4 f 1 = = 1 Therefore the root lies between 0 & 1 Let us take x 0 = 1 {Near to zero} The Newton- Raphson formula is +ve ve x n+1 = x n f x n f x n 1 Let f x = x 3 6x + 4 and f 1 x = 3 x 2 6 x 1 = x 0 f x 0 f x 0 x 1 = 1 f 1 f 1 x 1 = x 1 = x 1 = 0666 x 2 = x 1 f x 1 f x 1 x 1 = 0666 f 0666 f 0666

14 x 2 = x 2 = x 1 = 073 x 3 = x 2 f x 2 f x 2 x 3 = 073 f 073 f 073 x 3 = x 3 = x 3 = The root of the equation x 3 6x + 4 = 0 is 0732 Find the real positive root of 3x cos x 1 = 0 correct to six decimal places using Newton method Solution : Let f x = 3x cos x 1 = 0 Now, f 0 = 3 0 cos 0 1 = 2 f 1 = 3 1 cos 1 1 = Therefore the root lies between 0 & 1 Let us take x 0 = 1 {Near to zero} The Newton- Raphson formula is ve ve Let x n+1 = x n f x n f x n 1 f x = 3x cos x 1 and f 1 x = 3 + sin x x 1 = x 0 f x 0 f x 0 x 1 = 1 f 1 f 1 x 1 = cos sin 1

15 x 1 = x 2 = x 2 = x 1 f x 1 f x 1 x 2 = f f cos sin x 2 = x 3 = x 3 = x 2 f x 2 f x 2 x 3 = f f cos sin x 3 = The root of the equation x 4 x = 10 is FIXED POINT ITERATION OR ITERATION METHOD The condition for convergence of a method Let f x = 0 be the given equation whose actual root is r The equation f x = 0 be written as x = g x Let I be the interval containing the root x = r If g x < 1 for all x in I, then the sequence of approximations x 0, x 1, x 2, x n will converge to r, if the initial starting value x 0 is chosen in I Note 1 Since x n r K x n 1 r where K is a constant the convergence is linear and the convergence is of order 1 Note 2 The sufficient condition for the convergence is g x < 1 for all x in I Find the positive root of x 2 2x 3 = 0 by Iteration method Solution : Let f x = x 2 2x 3 = 0 Now, f 0 = = 10 ve

16 f 1 = = 10 ve f 2 = = +4 +ve Therefore the root lies between 1 & 2 Let us take x 0 = 2 {Near to zero} x 2 2x 3 = 0 x 2 = 2x + 3 x = 2x + 3 Let x 0 = 2 x = g(x) = 2x + 3 x 1 = g x 0 = 2x = = x 2 = g x 1 = 2x = = x 3 = g x 2 = 2x = = x 4 = g x 3 = 2x = = x 5 = g x 4 = 2x = = x 6 = g x 5 = 2x = = x 7 = g x 6 = 2x = = x 8 = g x 7 = 2x = = x 9 = g x 8 = 2x = = x 10 = g x 9 = 2x = = Hence the root of the equation is x 2 2x 3 = 0 is Find the Real root of the equation x 3 + x by Fixed point iteration method Let f x = x 3 + x = 0 f 0 = = 100 ve f 1 = = 98 ve f 2 = = 88 ve f 3 = = 64 ve f 4 = = 20 ve f 5 = = +50 +ve The root lies between 4 & 5

17 Now, g x = Since x 3 + x = 0 x 2 x + 1 = 100 x 2 = 100 x + 1 x = g x = 10 x + 1 = 10 x x = 5 x + 1 ( 3 2 ) g 4 = ( 3 2 ) = < 1 g 5 = ( 3 2 ) = < 1 So that we can use the iteration method Let x 0 = 4 x 1 = g x 0 = 10 x = = = x 2 = g x 1 = 10 x = = = x 3 = g x 2 = 10 x = = x 4 = g x 3 = 10 x = = x 5 = g x 4 = 10 x = = x 6 = g x 5 = 10 x = = x 7 = g x 6 = 10 x = = x 8 = g x 7 = 10 x = = x 9 = g x 8 = 10 x = = x 10 = g x 9 = 10 x = = x 11 = g x 10 = 10 x = = Hence the root of the equation is x 3 + x = 0 is 43310

18 Find the real root of the equation cos x = 3x 1 correct to five decimal places using fixed point iteration method Let f x = cos x 3x + 1 = 0 f 0 = cos = 2 +ve f 1 = cos = ve The root lies between 0 & 1 Since cos x 3x + 1 = 0 3x = cos x + 1 x = cos x x = g x = cos x Now, g x = 1 3 sin x = 1 sin x 3 g 0 = 1 3 sin 0 = 0 < 1 So that we can use the iteration method Let x 0 = 4 g 1 = 1 sin 1 = 0284 < 1 3 x 1 = g x 0 = cos x 0 = 1 3 x 2 = g x 1 = cos x 1 = 1 3 x 3 = g x 2 = cos x 2 = = cos = cos = x 4 = g x 3 = cos x 3 = x 5 = g x 4 = cos x 4 = x 6 = g x 5 = cos x 5 = x 7 = g x 6 = cos x 6 = x 8 = g x 7 = cos x 7 =

19 x 9 = g x 8 = cos x 8 = Hence the root of the equation is cos x = 3x 1 is Triangularisation method or LU decomposition method 0r LU factorization method Solve the following system by triangularisation method x + y + z = 1, 4x + 3y z = 6, 3x + 5y + 3z = 4 The given system is equivalent to AX = B x y z = Let L = l l 31 l 32 1, U = u 11 u 12 u 13 0 u 22 u 23, Y = 0 0 u 33 y 1 y 2 y 3 Let LU = A l l 31 l 32 1 u 11 u 12 u 13 0 u 22 u 23 = 0 0 u u 11 u 12 u 13 l 21 u 11 l 21 u 12 + u 22 l 21 u 13 + u 23 = l 31 u 11 l 31 u 12 + l 32 u 22 l 31 u 13 + l 32 u 23 + u Equating the coefficients on both sides we get, u 11 = 1, u 12 = 1, u 13 = 1 l 21 u 11 = 4 l 21 1 = 4 l 21 = 4 l 21 u 12 + u 22 = u 22 = 3 u 22 = 1 l 21 u 13 + u 23 = u 23 = 1 u 23 = 1 4 = 5 u 23 = 5 l 31 u 11 = 3 l 31 1 = 3 l 31 = 3 l 31 u 12 + l 32 u 22 = l 32 1 = 5 l 32 = 3 5 l 32 = 2 l 31 u 13 + l 32 u 23 + u 33 = u 33 = 3 u 33 = u 33 = 10

20 AX = B LUX = B LY = B were UX = Y y 1 y 2 y 3 = By forward substitution method we get y 1 = 1 4y 1 + y 2 = y 2 = 6 y 2 = 2 3y 1 2y 2 + y 3 = y 3 = 4 y 3 = 5 UX = Y x y z = By backward substitution method we get 10z = 5 z = 1 2 y 5z = 2 y = 2 y = y = 1 2 x + y + z = 1 x = 1 x = 1 Hence x = 1, y = 1 2, z = 1 2 Solve the following system by triangularisation method x + 5y + z = 14, 2x + y + 3z = 13, 3x + y + 4z = 17 The given system is equivalent to AX = B x y z = Let L = l l 31 l 32 1, U = u 11 u 12 u 13 0 u 22 u 23, Y = 0 0 u 33 y 1 y 2 y 3 Let LU = A

21 1 0 0 l l 31 l 32 1 u 11 u 12 u 13 0 u 22 u 23 = 0 0 u u 11 u 12 u 13 l 21 u 11 l 21 u 12 + u 22 l 21 u 13 + u 23 = l 31 u 11 l 31 u 12 + l 32 u 22 l 31 u 13 + l 32 u 23 + u Equating the coefficients on both sides we get, u 11 = 1, u 12 = 5, u 13 = 1 l 21 u 11 = 2 l 21 1 = 2 l 21 = 2 l 21 u 12 + u 22 = u 22 = 1 u 22 = 9 l 21 u 13 + u 23 = u 23 = 3 u 23 = 1 l 31 u 11 = 3 l 31 1 = 3 l 31 = 3 l 31 u 12 + l 32 u 22 = l 32 9 = 1 l 32 = 14 9 l 31 u 13 + l 32 u 23 + u 33 = u 33 = 4 u 33 = u 33 = 5 9 AX = B LUX = B LY = B were UX = Y y 1 y 2 y 3 = By forward substitution method we get y 1 = 14 2y 1 + y 2 = y 2 = 13 y 2 = 15 3y y 2 + y 3 = y 3 = 17 y 3 = 5 3 UX = Y x y z = By backward substitution method we get

22 5 9 z = 5 3 z = 3 9y + z = 15 9y + 3 = 15 9y = 18 y = 2 x + 5y + z = 14 x = 14 x = 1 Hence x = 1, y = 2, z = 3

UNIT II SOLUTION OF NON-LINEAR AND SIMULTANEOUS LINEAR EQUATION

UNIT II SOLUTION OF NON-LINEAR AND SIMULTANEOUS LINEAR EQUATION UNIT II SOLUTION OF NON-LINEAR AND SIMULTANEOUS LINEAR EQUATION. If g x is continuous in a, b, then under what condition the iterative method x = g x has a unique solution in a, b? g x < in a, b. State

More information

The iteration formula for to find the root of the equation

The iteration formula for to find the root of the equation SRI RAMAKRISHNA INSTITUTE OF TECHNOLOGY, COIMBATORE- 10 DEPARTMENT OF SCIENCE AND HUMANITIES SUBJECT: NUMERICAL METHODS & LINEAR PROGRAMMING UNIT II SOLUTIONS OF EQUATION 1. If is continuous in then under

More information

SRI RAMAKRISHNA INSTITUTE OF TECHNOLOGY, COIMBATORE- 10 DEPARTMENT OF SCIENCE AND HUMANITIES B.E - EEE & CIVIL UNIT I

SRI RAMAKRISHNA INSTITUTE OF TECHNOLOGY, COIMBATORE- 10 DEPARTMENT OF SCIENCE AND HUMANITIES B.E - EEE & CIVIL UNIT I SRI RAMAKRISHNA INSTITUTE OF TECHNOLOGY, COIMBATORE- 10 DEPARTMENT OF SCIENCE AND HUMANITIES B.E - EEE & CIVIL SUBJECT: NUMERICAL METHODS ( SEMESTER VI ) UNIT I SOLUTIONS OF EQUATIONS AND EIGEN VALUE PROBLEMS

More information

Lecture 44. Better and successive approximations x2, x3,, xn to the root are obtained from

Lecture 44. Better and successive approximations x2, x3,, xn to the root are obtained from Lecture 44 Solution of Non-Linear Equations Regula-Falsi Method Method of iteration Newton - Raphson Method Muller s Method Graeffe s Root Squaring Method Newton -Raphson Method An approximation to the

More information

SOLUTION OF ALGEBRAIC AND TRANSCENDENTAL EQUATIONS BISECTION METHOD

SOLUTION OF ALGEBRAIC AND TRANSCENDENTAL EQUATIONS BISECTION METHOD BISECTION METHOD If a function f(x) is continuous between a and b, and f(a) and f(b) are of opposite signs, then there exists at least one root between a and b. It is shown graphically as, Let f a be negative

More information

SBAME CALCULUS OF FINITE DIFFERENCES AND NUMERICAL ANLAYSIS-I Units : I-V

SBAME CALCULUS OF FINITE DIFFERENCES AND NUMERICAL ANLAYSIS-I Units : I-V SBAME CALCULUS OF FINITE DIFFERENCES AND NUMERICAL ANLAYSIS-I Units : I-V Unit I-Syllabus Solutions of Algebraic and Transcendental equations, Bisection method, Iteration Method, Regula Falsi method, Newton

More information

Root Finding (and Optimisation)

Root Finding (and Optimisation) Root Finding (and Optimisation) M.Sc. in Mathematical Modelling & Scientific Computing, Practical Numerical Analysis Michaelmas Term 2018, Lecture 4 Root Finding The idea of root finding is simple we want

More information

BACHELOR OF COMPUTER APPLICATIONS (BCA) (Revised) Term-End Examination December, 2015 BCS-054 : COMPUTER ORIENTED NUMERICAL TECHNIQUES

BACHELOR OF COMPUTER APPLICATIONS (BCA) (Revised) Term-End Examination December, 2015 BCS-054 : COMPUTER ORIENTED NUMERICAL TECHNIQUES No. of Printed Pages : 5 BCS-054 BACHELOR OF COMPUTER APPLICATIONS (BCA) (Revised) Term-End Examination December, 2015 058b9 BCS-054 : COMPUTER ORIENTED NUMERICAL TECHNIQUES Time : 3 hours Maximum Marks

More information

UNIT - 2 Unit-02/Lecture-01

UNIT - 2 Unit-02/Lecture-01 UNIT - 2 Unit-02/Lecture-01 Solution of algebraic & transcendental equations by regula falsi method Unit-02/Lecture-01 [RGPV DEC(2013)] [7] Unit-02/Lecture-01 [RGPV JUNE(2014)] [7] Unit-02/Lecture-01 S.NO

More information

Numerical Methods Dr. Sanjeev Kumar Department of Mathematics Indian Institute of Technology Roorkee Lecture No 7 Regula Falsi and Secant Methods

Numerical Methods Dr. Sanjeev Kumar Department of Mathematics Indian Institute of Technology Roorkee Lecture No 7 Regula Falsi and Secant Methods Numerical Methods Dr. Sanjeev Kumar Department of Mathematics Indian Institute of Technology Roorkee Lecture No 7 Regula Falsi and Secant Methods So welcome to the next lecture of the 2 nd unit of this

More information

Mathematical Methods for Numerical Analysis and Optimization

Mathematical Methods for Numerical Analysis and Optimization Biyani's Think Tank Concept based notes Mathematical Methods for Numerical Analysis and Optimization (MCA) Varsha Gupta Poonam Fatehpuria M.Sc. (Maths) Lecturer Deptt. of Information Technology Biyani

More information

Subbalakshmi Lakshmipathy College of Science. Department of Mathematics

Subbalakshmi Lakshmipathy College of Science. Department of Mathematics ॐ Subbalakshmi Lakshmipathy College of Science Department of Mathematics As are the crests on the hoods of peacocks, As are the gems on the heads of cobras, So is Mathematics, at the top of all Sciences.

More information

Virtual University of Pakistan

Virtual University of Pakistan Virtual University of Pakistan File Version v.0.0 Prepared For: Final Term Note: Use Table Of Content to view the Topics, In PDF(Portable Document Format) format, you can check Bookmarks menu Disclaimer:

More information

Zeroes of Transcendental and Polynomial Equations. Bisection method, Regula-falsi method and Newton-Raphson method

Zeroes of Transcendental and Polynomial Equations. Bisection method, Regula-falsi method and Newton-Raphson method Zeroes of Transcendental and Polynomial Equations Bisection method, Regula-falsi method and Newton-Raphson method PRELIMINARIES Solution of equation f (x) = 0 A number (real or complex) is a root of the

More information

Question Bank (I scheme )

Question Bank (I scheme ) Question Bank (I scheme ) Name of subject: Applied Mathematics Subject code: 22206/22224/22210/22201 Course : CH/CM/CE/EJ/IF/EE/ME Semester: II UNIT-3 (CO3) Unit Test : II (APPLICATION OF INTEGRATION)

More information

Solution of Algebric & Transcendental Equations

Solution of Algebric & Transcendental Equations Page15 Solution of Algebric & Transcendental Equations Contents: o Introduction o Evaluation of Polynomials by Horner s Method o Methods of solving non linear equations o Bracketing Methods o Bisection

More information

EAD 115. Numerical Solution of Engineering and Scientific Problems. David M. Rocke Department of Applied Science

EAD 115. Numerical Solution of Engineering and Scientific Problems. David M. Rocke Department of Applied Science EAD 115 Numerical Solution of Engineering and Scientific Problems David M. Rocke Department of Applied Science Taylor s Theorem Can often approximate a function by a polynomial The error in the approximation

More information

Numerical Analysis Solution of Algebraic Equation (non-linear equation) 1- Trial and Error. 2- Fixed point

Numerical Analysis Solution of Algebraic Equation (non-linear equation) 1- Trial and Error. 2- Fixed point Numerical Analysis Solution of Algebraic Equation (non-linear equation) 1- Trial and Error In this method we assume initial value of x, and substitute in the equation. Then modify x and continue till we

More information

AIMS Exercise Set # 1

AIMS Exercise Set # 1 AIMS Exercise Set #. Determine the form of the single precision floating point arithmetic used in the computers at AIMS. What is the largest number that can be accurately represented? What is the smallest

More information

M.SC. PHYSICS - II YEAR

M.SC. PHYSICS - II YEAR MANONMANIAM SUNDARANAR UNIVERSITY DIRECTORATE OF DISTANCE & CONTINUING EDUCATION TIRUNELVELI 627012, TAMIL NADU M.SC. PHYSICS - II YEAR DKP26 - NUMERICAL METHODS (From the academic year 2016-17) Most Student

More information

TMA4125 Matematikk 4N Spring 2017

TMA4125 Matematikk 4N Spring 2017 Norwegian University of Science and Technology Institutt for matematiske fag TMA15 Matematikk N Spring 17 Solutions to exercise set 1 1 We begin by writing the system as the augmented matrix.139.38.3 6.

More information

Today s class. Linear Algebraic Equations LU Decomposition. Numerical Methods, Fall 2011 Lecture 8. Prof. Jinbo Bi CSE, UConn

Today s class. Linear Algebraic Equations LU Decomposition. Numerical Methods, Fall 2011 Lecture 8. Prof. Jinbo Bi CSE, UConn Today s class Linear Algebraic Equations LU Decomposition 1 Linear Algebraic Equations Gaussian Elimination works well for solving linear systems of the form: AX = B What if you have to solve the linear

More information

CHAPTER-II ROOTS OF EQUATIONS

CHAPTER-II ROOTS OF EQUATIONS CHAPTER-II ROOTS OF EQUATIONS 2.1 Introduction The roots or zeros of equations can be simply defined as the values of x that makes f(x) =0. There are many ways to solve for roots of equations. For some

More information

Example - Newton-Raphson Method

Example - Newton-Raphson Method Eample - Newton-Raphson Method We now consider the following eample: minimize f( 3 3 + -- 4 4 Since f ( 3 2 + 3 3 and f ( 6 + 9 2 we form the following iteration: + n 3 ( n 3 3( n 2 ------------------------------------

More information

USHA RAMA COLLEGE OF ENGINEERING & TECHNOLOGY

USHA RAMA COLLEGE OF ENGINEERING & TECHNOLOGY Code No: R007/R0 Set No. I B.Tech I Semester Supplementary Examinations, Feb/Mar 04 MATHEMATICAL METHODS ( Common to Civil Engineering, Electrical & Electronics Engineering, Computer Science & Engineering,

More information

MTH603 FAQ + Short Questions Answers.

MTH603 FAQ + Short Questions Answers. Absolute Error : Accuracy : The absolute error is used to denote the actual value of a quantity less it s rounded value if x and x* are respectively the rounded and actual values of a quantity, then absolute

More information

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad 1 P a g e INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad - 500 04 Name : Mathematics-II Code : A0006 Class : II B. Tech I Semester Branch : CIVIL Year : 016 017 FRESHMAN ENGINEERING

More information

INSTITUTE OF AERONAUTICAL ENGINEERING Dundigal, Hyderabad MECHANICAL ENGINEERING TUTORIAL QUESTION BANK

INSTITUTE OF AERONAUTICAL ENGINEERING Dundigal, Hyderabad MECHANICAL ENGINEERING TUTORIAL QUESTION BANK Course Name Course Code Class Branch INSTITUTE OF AERONAUTICAL ENGINEERING Dundigal, Hyderabad - 500 043 Mathematics-II A30006 II-I B. Tech Freshman Engineering Year 016 017 Course Faculty MECHANICAL ENGINEERING

More information

MALLA REDDY ENGINEERING COLLEGE

MALLA REDDY ENGINEERING COLLEGE MODULE I MALLA REDDY ENGINEERING COLLEGE (Autonomous) I B.Tech II Semester (MR15) I- Mid Question Bank Subject: Computational Mathematics (Common for CE, ME, CSE and Min.E) 1. If f(x) is continuous in

More information

(f(x) P 3 (x)) dx. (a) The Lagrange formula for the error is given by

(f(x) P 3 (x)) dx. (a) The Lagrange formula for the error is given by 1. QUESTION (a) Given a nth degree Taylor polynomial P n (x) of a function f(x), expanded about x = x 0, write down the Lagrange formula for the truncation error, carefully defining all its elements. How

More information

Appendix 8 Numerical Methods for Solving Nonlinear Equations 1

Appendix 8 Numerical Methods for Solving Nonlinear Equations 1 Appendix 8 Numerical Methods for Solving Nonlinear Equations 1 An equation is said to be nonlinear when it involves terms of degree higher than 1 in the unknown quantity. These terms may be polynomial

More information

Numerical methods. Examples with solution

Numerical methods. Examples with solution Numerical methods Examples with solution CONTENTS Contents. Nonlinear Equations 3 The bisection method............................ 4 Newton s method.............................. 8. Linear Systems LU-factorization..............................

More information

Numerical Analysis MTH603

Numerical Analysis MTH603 Numerical Analysis Course Contents Solution of Non Linear Equations Solution of Linear System of Equations Approximation of Eigen Values Interpolation and Polynomial Approximation Numerical Differentiation

More information

ASSIGNMENT BOOKLET. Numerical Analysis (MTE-10) (Valid from 1 st July, 2011 to 31 st March, 2012)

ASSIGNMENT BOOKLET. Numerical Analysis (MTE-10) (Valid from 1 st July, 2011 to 31 st March, 2012) ASSIGNMENT BOOKLET MTE-0 Numerical Analysis (MTE-0) (Valid from st July, 0 to st March, 0) It is compulsory to submit the assignment before filling in the exam form. School of Sciences Indira Gandhi National

More information

Previous Year Questions & Detailed Solutions

Previous Year Questions & Detailed Solutions Previous Year Questions & Detailed Solutions. The rate of convergence in the Gauss-Seidal method is as fast as in Gauss Jacobi smethod ) thrice ) half-times ) twice 4) three by two times. In application

More information

Numerical and Statistical Methods

Numerical and Statistical Methods F.Y. B.Sc.(IT) : Sem. II Numerical and Statistical Methods Time : ½ Hrs.] Prelim Question Paper Solution [Marks : 75 Q. Attempt any THREE of the following : [5] Q.(a) What is a mathematical model? With

More information

MTH603 - Numerical Analysis Solved final Term Papers For Final Term Exam

MTH603 - Numerical Analysis Solved final Term Papers For Final Term Exam MTH603 - Numerical Analysis Solved final Term Papers For Final Term Exam Exact solution of 2/3 is not exists. The Jacobi s method is A method of solving a matrix equation on a matrix that has zeros along

More information

Iterative Methods. Splitting Methods

Iterative Methods. Splitting Methods Iterative Methods Splitting Methods 1 Direct Methods Solving Ax = b using direct methods. Gaussian elimination (using LU decomposition) Variants of LU, including Crout and Doolittle Other decomposition

More information

Numerical and Statistical Methods

Numerical and Statistical Methods F.Y. B.Sc.(IT) : Sem. II Numerical and Statistical Methods Time : ½ Hrs.] Prelim Question Paper Solution [Marks : 75 Q. Attempt any THREE of the following : [5] Q.(a) What is a mathematical model? With

More information

Page No.1. MTH603-Numerical Analysis_ Muhammad Ishfaq

Page No.1. MTH603-Numerical Analysis_ Muhammad Ishfaq Page No.1 File Version v1.5.3 Update: (Dated: 3-May-011) This version of file contains: Content of the Course (Done) FAQ updated version.(these must be read once because some very basic definition and

More information

Practical Numerical Analysis: Sheet 3 Solutions

Practical Numerical Analysis: Sheet 3 Solutions Practical Numerical Analysis: Sheet 3 Solutions 1. We need to compute the roots of the function defined by f(x) = sin(x) + sin(x 2 ) on the interval [0, 3] using different numerical methods. First we consider

More information

Linear Algebra Section 2.6 : LU Decomposition Section 2.7 : Permutations and transposes Wednesday, February 13th Math 301 Week #4

Linear Algebra Section 2.6 : LU Decomposition Section 2.7 : Permutations and transposes Wednesday, February 13th Math 301 Week #4 Linear Algebra Section. : LU Decomposition Section. : Permutations and transposes Wednesday, February 1th Math 01 Week # 1 The LU Decomposition We learned last time that we can factor a invertible matrix

More information

B.Tech. Theory Examination (Semester IV) Engineering Mathematics III

B.Tech. Theory Examination (Semester IV) Engineering Mathematics III Solved Question Paper 5-6 B.Tech. Theory Eamination (Semester IV) 5-6 Engineering Mathematics III Time : hours] [Maimum Marks : Section-A. Attempt all questions of this section. Each question carry equal

More information

Roots of Equations. ITCS 4133/5133: Introduction to Numerical Methods 1 Roots of Equations

Roots of Equations. ITCS 4133/5133: Introduction to Numerical Methods 1 Roots of Equations Roots of Equations Direct Search, Bisection Methods Regula Falsi, Secant Methods Newton-Raphson Method Zeros of Polynomials (Horner s, Muller s methods) EigenValue Analysis ITCS 4133/5133: Introduction

More information

Regent College Maths Department. Further Pure 1 Numerical Solutions of Equations

Regent College Maths Department. Further Pure 1 Numerical Solutions of Equations Regent College Maths Department Further Pure 1 Numerical Solutions of Equations Further Pure 1 Numerical Solutions of Equations You should: Be able use interval bisection, linear interpolation and the

More information

Numerical Analysis: Solutions of System of. Linear Equation. Natasha S. Sharma, PhD

Numerical Analysis: Solutions of System of. Linear Equation. Natasha S. Sharma, PhD Mathematical Question we are interested in answering numerically How to solve the following linear system for x Ax = b? where A is an n n invertible matrix and b is vector of length n. Notation: x denote

More information

School of Sciences Indira Gandhi National Open University Maidan Garhi, New Delhi (For January 2012 cycle)

School of Sciences Indira Gandhi National Open University Maidan Garhi, New Delhi (For January 2012 cycle) MTE-0 ASSIGNMENT BOOKLET Bachelor's Degree Programme Numerical Analysis (MTE-0) (Valid from st January, 0 to st December, 0) School of Sciences Indira Gandhi National Open University Maidan Garhi, New

More information

12/1/2015 LINEAR ALGEBRA PRE-MID ASSIGNMENT ASSIGNED BY: PROF. SULEMAN SUBMITTED BY: M. REHAN ASGHAR BSSE 4 ROLL NO: 15126

12/1/2015 LINEAR ALGEBRA PRE-MID ASSIGNMENT ASSIGNED BY: PROF. SULEMAN SUBMITTED BY: M. REHAN ASGHAR BSSE 4 ROLL NO: 15126 12/1/2015 LINEAR ALGEBRA PRE-MID ASSIGNMENT ASSIGNED BY: PROF. SULEMAN SUBMITTED BY: M. REHAN ASGHAR Cramer s Rule Solving a physical system of linear equation by using Cramer s rule Cramer s rule is really

More information

NOTES FOR NUMERICAL METHODS MUHAMMAD USMAN HAMID

NOTES FOR NUMERICAL METHODS MUHAMMAD USMAN HAMID NOTES FOR NUMERICAL METHODS MUHAMMAD USMAN HAMID PREFACE In the beginning of university life I used only those books which were recommended by my teachers, soon I realized, that books were not enough to

More information

Department of Applied Mathematics and Theoretical Physics. AMA 204 Numerical analysis. Exam Winter 2004

Department of Applied Mathematics and Theoretical Physics. AMA 204 Numerical analysis. Exam Winter 2004 Department of Applied Mathematics and Theoretical Physics AMA 204 Numerical analysis Exam Winter 2004 The best six answers will be credited All questions carry equal marks Answer all parts of each question

More information

CS 323: Numerical Analysis and Computing

CS 323: Numerical Analysis and Computing CS 323: Numerical Analysis and Computing MIDTERM #1 Instructions: This is an open notes exam, i.e., you are allowed to consult any textbook, your class notes, homeworks, or any of the handouts from us.

More information

Engineering Mathematics

Engineering Mathematics F.Y. Diploma : Sem. II [AE/CD/CE/CH/CM/CO/CR/CS/CV/CW/DE/ED/EE/EI/EJ/EN/ EP/ET/EV/EX/FE/IC/IE/IF/IS/IU/ME/MH/MI/MU/PG/PS/PT] Engineering Mathematics Time: Hrs.] Pre Question Paper Solution [Marks : 00

More information

Review of matrices. Let m, n IN. A rectangle of numbers written like A =

Review of matrices. Let m, n IN. A rectangle of numbers written like A = Review of matrices Let m, n IN. A rectangle of numbers written like a 11 a 12... a 1n a 21 a 22... a 2n A =...... a m1 a m2... a mn where each a ij IR is called a matrix with m rows and n columns or an

More information

KINGS COLLEGE OF ENGINEERING DEPARTMENT OF MATHEMATICS ACADEMIC YEAR / EVEN SEMESTER QUESTION BANK

KINGS COLLEGE OF ENGINEERING DEPARTMENT OF MATHEMATICS ACADEMIC YEAR / EVEN SEMESTER QUESTION BANK KINGS COLLEGE OF ENGINEERING MA5-NUMERICAL METHODS DEPARTMENT OF MATHEMATICS ACADEMIC YEAR 00-0 / EVEN SEMESTER QUESTION BANK SUBJECT NAME: NUMERICAL METHODS YEAR/SEM: II / IV UNIT - I SOLUTION OF EQUATIONS

More information

Review. Numerical Methods Lecture 22. Prof. Jinbo Bi CSE, UConn

Review. Numerical Methods Lecture 22. Prof. Jinbo Bi CSE, UConn Review Taylor Series and Error Analysis Roots of Equations Linear Algebraic Equations Optimization Numerical Differentiation and Integration Ordinary Differential Equations Partial Differential Equations

More information

Exact and Approximate Numbers:

Exact and Approximate Numbers: Eact and Approimate Numbers: The numbers that arise in technical applications are better described as eact numbers because there is not the sort of uncertainty in their values that was described above.

More information

Preface. 2 Linear Equations and Eigenvalue Problem 22

Preface. 2 Linear Equations and Eigenvalue Problem 22 Contents Preface xv 1 Errors in Computation 1 1.1 Introduction 1 1.2 Floating Point Representation of Number 1 1.3 Binary Numbers 2 1.3.1 Binary number representation in computer 3 1.4 Significant Digits

More information

Numerical Methods. Scientists. Engineers

Numerical Methods. Scientists. Engineers Third Edition Numerical Methods for Scientists and Engineers K. Sankara Rao Numerical Methods for Scientists and Engineers Numerical Methods for Scientists and Engineers Third Edition K. SANKARA RAO Formerly,

More information

5.7 Cramer's Rule 1. Using Determinants to Solve Systems Assumes the system of two equations in two unknowns

5.7 Cramer's Rule 1. Using Determinants to Solve Systems Assumes the system of two equations in two unknowns 5.7 Cramer's Rule 1. Using Determinants to Solve Systems Assumes the system of two equations in two unknowns (1) possesses the solution and provided that.. The numerators and denominators are recognized

More information

Solving Non-Linear Equations (Root Finding)

Solving Non-Linear Equations (Root Finding) Solving Non-Linear Equations (Root Finding) Root finding Methods What are root finding methods? Methods for determining a solution of an equation. Essentially finding a root of a function, that is, a zero

More information

Linear Algebraic Equations

Linear Algebraic Equations Linear Algebraic Equations 1 Fundamentals Consider the set of linear algebraic equations n a ij x i b i represented by Ax b j with [A b ] [A b] and (1a) r(a) rank of A (1b) Then Axb has a solution iff

More information

2.29 Numerical Fluid Mechanics Spring 2015 Lecture 4

2.29 Numerical Fluid Mechanics Spring 2015 Lecture 4 2.29 Spring 2015 Lecture 4 Review Lecture 3 Truncation Errors, Taylor Series and Error Analysis Taylor series: 2 3 n n i1 i i i i i n f( ) f( ) f '( ) f ''( ) f '''( )... f ( ) R 2! 3! n! n1 ( n1) Rn f

More information

1. to apply Simpson s 1/3 rule, the number of intervals in the following must be Answer: (select your correct answer)

1. to apply Simpson s 1/3 rule, the number of intervals in the following must be Answer: (select your correct answer) 1. to apply Simpson s 1/3 rule, the number of intervals in the following must be Answer: (select your correct answer) 6 7 9 11 2. In integrating by dividing the interval into eight equal parts, width of

More information

Numerical Analysis MTH603. Virtual University of Pakistan Knowledge beyond the boundaries

Numerical Analysis MTH603. Virtual University of Pakistan Knowledge beyond the boundaries Numerical Analysis MTH6 Virtual University of Pakistan Knowledge beyond the boundaries Table of Contents Lecture # Topics Page # Lecture Introduction Lecture Errors in Computations 6 Lecture Solution of

More information

Department of Mathematics California State University, Los Angeles Master s Degree Comprehensive Examination in. NUMERICAL ANALYSIS Spring 2015

Department of Mathematics California State University, Los Angeles Master s Degree Comprehensive Examination in. NUMERICAL ANALYSIS Spring 2015 Department of Mathematics California State University, Los Angeles Master s Degree Comprehensive Examination in NUMERICAL ANALYSIS Spring 2015 Instructions: Do exactly two problems from Part A AND two

More information

Justify all your answers and write down all important steps. Unsupported answers will be disregarded.

Justify all your answers and write down all important steps. Unsupported answers will be disregarded. Numerical Analysis FMN011 10058 The exam lasts 4 hours and has 13 questions. A minimum of 35 points out of the total 70 are required to get a passing grade. These points will be added to those you obtained

More information

Computational Methods. Systems of Linear Equations

Computational Methods. Systems of Linear Equations Computational Methods Systems of Linear Equations Manfred Huber 2010 1 Systems of Equations Often a system model contains multiple variables (parameters) and contains multiple equations Multiple equations

More information

PowerPoints organized by Dr. Michael R. Gustafson II, Duke University

PowerPoints organized by Dr. Michael R. Gustafson II, Duke University Part 3 Chapter 10 LU Factorization PowerPoints organized by Dr. Michael R. Gustafson II, Duke University All images copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display.

More information

Next topics: Solving systems of linear equations

Next topics: Solving systems of linear equations Next topics: Solving systems of linear equations 1 Gaussian elimination (today) 2 Gaussian elimination with partial pivoting (Week 9) 3 The method of LU-decomposition (Week 10) 4 Iterative techniques:

More information

Introduction to Numerical Analysis

Introduction to Numerical Analysis Introduction to Numerical Analysis S. Baskar and S. Sivaji Ganesh Department of Mathematics Indian Institute of Technology Bombay Powai, Mumbai 400 076. Introduction to Numerical Analysis Lecture Notes

More information

Math 473: Practice Problems for Test 1, Fall 2011, SOLUTIONS

Math 473: Practice Problems for Test 1, Fall 2011, SOLUTIONS Math 473: Practice Problems for Test 1, Fall 011, SOLUTIONS Show your work: 1. (a) Compute the Taylor polynomials P n (x) for f(x) = sin x and x 0 = 0. Solution: Compute f(x) = sin x, f (x) = cos x, f

More information

LECTURE NOTES ELEMENTARY NUMERICAL METHODS. Eusebius Doedel

LECTURE NOTES ELEMENTARY NUMERICAL METHODS. Eusebius Doedel LECTURE NOTES on ELEMENTARY NUMERICAL METHODS Eusebius Doedel TABLE OF CONTENTS Vector and Matrix Norms 1 Banach Lemma 20 The Numerical Solution of Linear Systems 25 Gauss Elimination 25 Operation Count

More information

COURSE Numerical integration of functions (continuation) 3.3. The Romberg s iterative generation method

COURSE Numerical integration of functions (continuation) 3.3. The Romberg s iterative generation method COURSE 7 3. Numerical integration of functions (continuation) 3.3. The Romberg s iterative generation method The presence of derivatives in the remainder difficulties in applicability to practical problems

More information

Introduction to PDEs and Numerical Methods Lecture 7. Solving linear systems

Introduction to PDEs and Numerical Methods Lecture 7. Solving linear systems Platzhalter für Bild, Bild auf Titelfolie hinter das Logo einsetzen Introduction to PDEs and Numerical Methods Lecture 7. Solving linear systems Dr. Noemi Friedman, 09.2.205. Reminder: Instationary heat

More information

Solution of Nonlinear Equations

Solution of Nonlinear Equations Solution of Nonlinear Equations In many engineering applications, there are cases when one needs to solve nonlinear algebraic or trigonometric equations or set of equations. These are also common in Civil

More information

Root Finding: Close Methods. Bisection and False Position Dr. Marco A. Arocha Aug, 2014

Root Finding: Close Methods. Bisection and False Position Dr. Marco A. Arocha Aug, 2014 Root Finding: Close Methods Bisection and False Position Dr. Marco A. Arocha Aug, 2014 1 Roots Given function f(x), we seek x values for which f(x)=0 Solution x is the root of the equation or zero of the

More information

Numerical methods, midterm test I (2018/19 autumn, group A) Solutions

Numerical methods, midterm test I (2018/19 autumn, group A) Solutions Numerical methods, midterm test I (2018/19 autumn, group A Solutions x Problem 1 (6p We are going to approximate the limit 3/2 x lim x 1 x 1 by substituting x = 099 into the fraction in the present form

More information

30.3. LU Decomposition. Introduction. Prerequisites. Learning Outcomes

30.3. LU Decomposition. Introduction. Prerequisites. Learning Outcomes LU Decomposition 30.3 Introduction In this Section we consider another direct method for obtaining the solution of systems of equations in the form AX B. Prerequisites Before starting this Section you

More information

PART I Lecture Notes on Numerical Solution of Root Finding Problems MATH 435

PART I Lecture Notes on Numerical Solution of Root Finding Problems MATH 435 PART I Lecture Notes on Numerical Solution of Root Finding Problems MATH 435 Professor Biswa Nath Datta Department of Mathematical Sciences Northern Illinois University DeKalb, IL. 60115 USA E mail: dattab@math.niu.edu

More information

LU Factorization. Marco Chiarandini. DM559 Linear and Integer Programming. Department of Mathematics & Computer Science University of Southern Denmark

LU Factorization. Marco Chiarandini. DM559 Linear and Integer Programming. Department of Mathematics & Computer Science University of Southern Denmark DM559 Linear and Integer Programming LU Factorization Marco Chiarandini Department of Mathematics & Computer Science University of Southern Denmark [Based on slides by Lieven Vandenberghe, UCLA] Outline

More information

10.2 ITERATIVE METHODS FOR SOLVING LINEAR SYSTEMS. The Jacobi Method

10.2 ITERATIVE METHODS FOR SOLVING LINEAR SYSTEMS. The Jacobi Method 54 CHAPTER 10 NUMERICAL METHODS 10. 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

Chapter 2 Solutions of Equations of One Variable

Chapter 2 Solutions of Equations of One Variable Chapter 2 Solutions of Equations of One Variable 2.1 Bisection Method In this chapter we consider one of the most basic problems of numerical approximation, the root-finding problem. This process involves

More information

Today s class. Numerical differentiation Roots of equation Bracketing methods. Numerical Methods, Fall 2011 Lecture 4. Prof. Jinbo Bi CSE, UConn

Today s class. Numerical differentiation Roots of equation Bracketing methods. Numerical Methods, Fall 2011 Lecture 4. Prof. Jinbo Bi CSE, UConn Today s class Numerical differentiation Roots of equation Bracketing methods 1 Numerical Differentiation Finite divided difference First forward difference First backward difference Lecture 3 2 Numerical

More information

Numerical Methods for Chemical Engineers

Numerical Methods for Chemical Engineers Numerical Methods for Chemical Engineers Chapter 3: System of Linear Algebraic Equation Morteza Esfandyari Email: Esfandyari.morteza@yahoo.com Mesfandyari.mihanblog.com Page 4-1 System of Linear Algebraic

More information

Numerical Methods Lecture 3

Numerical Methods Lecture 3 Numerical Methods Lecture 3 Nonlinear Equations by Pavel Ludvík Introduction Definition (Root or zero of a function) A root (or a zero) of a function f is a solution of an equation f (x) = 0. We learn

More information

Numerical Analysis & Computer Programming

Numerical Analysis & Computer Programming ++++++++++ Numerical Analysis & Computer Programming Previous year Questions from 07 to 99 Ramanasri Institute W E B S I T E : M A T H E M A T I C S O P T I O N A L. C O M C O N T A C T : 8 7 5 0 7 0 6

More information

A LINEAR SYSTEMS OF EQUATIONS. By : Dewi Rachmatin

A LINEAR SYSTEMS OF EQUATIONS. By : Dewi Rachmatin A LINEAR SYSTEMS OF EQUATIONS By : Dewi Rachmatin Back Substitution We will now develop the backsubstitution algorithm, which is useful for solving a linear system of equations that has an upper-triangular

More information

Examination paper for TMA4130 Matematikk 4N

Examination paper for TMA4130 Matematikk 4N Department of Mathematical Sciences Examination paper for TMA4130 Matematikk 4N Academic contact during examination: Morten Nome Phone: 90 84 97 83 Examination date: 13 December 2017 Examination time (from

More information

CS 257: Numerical Methods

CS 257: Numerical Methods CS 57: Numerical Methods Final Exam Study Guide Version 1.00 Created by Charles Feng http://www.fenguin.net CS 57: Numerical Methods Final Exam Study Guide 1 Contents 1 Introductory Matter 3 1.1 Calculus

More information

TABLE OF CONTENTS INTRODUCTION, APPROXIMATION & ERRORS 1. Chapter Introduction to numerical methods 1 Multiple-choice test 7 Problem set 9

TABLE OF CONTENTS INTRODUCTION, APPROXIMATION & ERRORS 1. Chapter Introduction to numerical methods 1 Multiple-choice test 7 Problem set 9 TABLE OF CONTENTS INTRODUCTION, APPROXIMATION & ERRORS 1 Chapter 01.01 Introduction to numerical methods 1 Multiple-choice test 7 Problem set 9 Chapter 01.02 Measuring errors 11 True error 11 Relative

More information

Homework 8/Solutions

Homework 8/Solutions MTH 309-4 Linear Algebra I F11 Homework 8/Solutions Section Exercises 6.2 1,2,9,12,16,21 Section 6.2 Exercise 2. For each of the following functions, either show the function is onto by choosing an arbitrary

More information

Unit I (Testing of Hypothesis)

Unit I (Testing of Hypothesis) SUBJECT NAME : Statistics and Numerical Methods SUBJECT CODE : MA645 MATERIAL NAME : Part A questions REGULATION : R03 UPDATED ON : November 07 (Upto N/D 07 Q.P) Unit I (Testing of Hypothesis). State level

More information

The Solution of Linear Systems AX = B

The Solution of Linear Systems AX = B Chapter 2 The Solution of Linear Systems AX = B 21 Upper-triangular Linear Systems We will now develop the back-substitution algorithm, which is useful for solving a linear system of equations that has

More information

Tutorial 1, B. Tech. Sem III, 24 July, (Root Findings and Linear System of Equations)

Tutorial 1, B. Tech. Sem III, 24 July, (Root Findings and Linear System of Equations) Tutorial, B. Tech. Sem III, 24 July, 206 (Root Findings and Linear System of Equations). Find the root of the equation e x = 3x lying in [0,] correct to three decimal places using Bisection, Regula-Falsi

More information

MATHEMATICAL METHODS INTERPOLATION

MATHEMATICAL METHODS INTERPOLATION MATHEMATICAL METHODS INTERPOLATION I YEAR BTech By Mr Y Prabhaker Reddy Asst Professor of Mathematics Guru Nanak Engineering College Ibrahimpatnam, Hyderabad SYLLABUS OF MATHEMATICAL METHODS (as per JNTU

More information

Bisection and False Position Dr. Marco A. Arocha Aug, 2014

Bisection and False Position Dr. Marco A. Arocha Aug, 2014 Bisection and False Position Dr. Marco A. Arocha Aug, 2014 1 Given function f, we seek x values for which f(x)=0 Solution x is the root of the equation or zero of the function f Problem is known as root

More information

MA3232 Numerical Analysis Week 9. James Cooley (1926-)

MA3232 Numerical Analysis Week 9. James Cooley (1926-) MA umerical Analysis Week 9 James Cooley (96-) James Cooley is an American mathematician. His most significant contribution to the world of mathematics and digital signal processing is the Fast Fourier

More information

LINEAR ALGEBRA: NUMERICAL METHODS. Version: August 12,

LINEAR ALGEBRA: NUMERICAL METHODS. Version: August 12, LINEAR ALGEBRA: NUMERICAL METHODS. Version: August 12, 2000 74 6 Summary Here we summarize the most important information about theoretical and numerical linear algebra. MORALS OF THE STORY: I. Theoretically

More information

Program : M.A./M.Sc. (Mathematics) M.A./M.Sc. (Final) Paper Code:MT-08 Numerical Analysis Section A (Very Short Answers Questions)

Program : M.A./M.Sc. (Mathematics) M.A./M.Sc. (Final) Paper Code:MT-08 Numerical Analysis Section A (Very Short Answers Questions) Program : M../M.Sc. (Mathematics) M../M.Sc. (Final) Paper Code:MT-08 Numerical nalysis Section (Very Short nswers Questions) 1. Write two examples of transcendental equations. (i) x 3 + sin x = 0 (ii)

More information

Suggested solutions, TMA4125 Calculus 4N

Suggested solutions, TMA4125 Calculus 4N Suggested solutions, TMA5 Calculus N Charles Curry May 9th 07. The graph of g(x) is displayed below. We have b n = = = 0 [ nπ = nπ ( x) nπx dx nπx dx cos nπx ] x nπx dx [ nπx x cos nπ ] ( cos nπ + cos

More information