Syllabus of Numerical Analysis of Different Universities Introduction to Numerical Analysis

Size: px
Start display at page:

Download "Syllabus of Numerical Analysis of Different Universities Introduction to Numerical Analysis"

Transcription

1 Syllabus of Numerical Analysis of Different Universities In this appendix we give the syllabus for the courses of numerical analysis held in different universities of USA, UK, Saudi Arabia, and others. ROWAN UNIVERSITY, Department of Mathematics Syllabus Introduction to Numerical Analysis CATALOG DESCRIPTION: Numerical Analysis 3 s.h. (Prerequisites: Linear Algebra, Ordinary Differential Equations (or concurrently) and prior computer programming experience) This course includes: elements of error analysis, real roots of an equation, polynomial approximation by finite difference and least square methods, interpolation, quadrature, numerical solution of ordinary differential equations, and numerical solutions of systems of linear equations. The student should expect to program a computer in addition to using a graphing calculator. OBJECTIVES: The purpose of numerical analysis is two-fold: (1) to find acceptable approximate solutions when exact solutions are either impossible or so arduous and time-consuming as to be impractical, and (2) to devise alternate methods of solution better suited to the capabilities of computers. While this course will involve the student in considerable computation in order to apply techniques and obtain acceptable answers, the main emphasis will be on the underlying theory. It will be necessary to draw upon a good bit of calculus, linear algebra, computer science and other branches of mathematics during the course. CONTENT: 1. Errors in Computation 1

2 2. Finding Roots of Equations by Approximation 2.1 Graphical and other rough methods 2.2 Methods of refinement, false position, iteration 2.3 Newton-Raphson method 3. Finite Differences and Polynomial Approximations 3.1 Finite differences, definition and theorems 3.2 Approximating polynomials, Gregory-Newton formula 3.3 Interpolation and extrapolation of tables 3.4 Error Analysis 4. Finite Integration 4.1 Finite integrals, definition and theorems 4.2 Summation of series 4.3 Quadrature formulas, Trapezoidal, Simpson, Weddle rules. 4.4 Richardson Extrapolation and Romberg Integration 5. Solutions of Systems of Equations 5.1 Scaled Gaussian Elimination 5.2 The Gauss-Seidel and Jacobi Iterative Methods Additional topics may be selected, as time permits, from: Approximation by Least Square Method Numerical Solution of Differential Equations Fractal and Chaos TEXTS: The following might be possible texts for this course: 1.K. Atkinson and W. Han, ELEMENTARY NUMERICAL ANALYSIS, John Wiley, 3rd edition 2. Burden, R.L. and Faires, D.F., Numerical Analysis, 5th ed. PWS-Kent, Boston, MA. 3. Cheney, Ward and Kincaid, David, Numerical Analysis and Computing, 2nd ed., Brooks/Cole, Pacific Grove, CA. 4. Marion, M.J., Numerical Analysis, A Practical Approach, Macmillian, New York, NY. 2

3 Math-254 (NUMERICAL ANALYSIS) TEXTBOOK: Lecture Note of Numerical Analysis Using MATLAB AUTHOR: Rizwan Butt Note: The Contents of the course will be covered by the following sections: CHAPTER 2: 2.1,2.2,2.4,2.5,2.6,2.7,2.8,2.9. CHAPTER 3: 3.1,3.2,3.3,3.4,3.6,3.7. CHAPTER 4: 4.1,4.2,4.3. CHAPTER 5: 5.1,5.2,5.3,5.5,5.6. CHAPTER 6: 6.1,6.2,6.3. Theorems with Proofs: Theorem 2.2,3.26,5.2,5.3,5.4. Note: The proofs of Linear Lagrange formula+unique Lagrange polynomial+trapezoidal rule for two-points + Simpson s rule for three-point + differentiation [two-point + threepoint (Forward+Central+Backward)formulas] can be ask. Theorems and Lemmas without Proofs: Theorems 2.1,3.1,3.2,3.7,3.8,3.14,3.20,3.21,3.22,4.1,4.2,4.3,4.4,5.1,5.5,6.1. Lemmas 2.1,2.2,2.3,2.4. Note: Before we start Chapter 2, we must discuss Computer Representation of Number, Error(in details), the Taylor s polynomial. These topic can be found in the first and fourth chapters of the recommended book(sections:1.2,1.3,1.4,and 4.1). Note: About the 10 marks we do the following: 2 Quizzes + computer assignments + Attendance ( ) marks Note: No tutorial classes for the course. Note: Please advise your students to use the recommended book. The students should study the following topics: Chapter 2: Solution of Nonlinear Equations The bisection method: How to apply it and to compute an error bound for the approximate solutions derived by the method. The Newton s method: How to apply it and the analysis of its error. The secant method: How to apply it. 3

4 The fixed point iterative method: How to formulate the function g(x) which will satisfies the conditions of the Theorem 2.2, then apply the iterative scheme and the analysis of the error. The rate of convergence of the iterative methods including the Newton s method. The multiple roots: How to define it and discuss the conditions under which the root is said to be simple or multiple. Here some attention should be given for the rate of the convergence of Newton s method for both the simple and the multiple roots. Also, the following modified Newton s methods should be discussed: x n+1 = x n mf(x n) f (x n ), f (x n ) 0, for n = 0, 1, 2,... where m is the multiplicity of the multiple roots, and the other one is x n+1 = x n f(x n )f (x n ), for n = 0, 1, 2,... [f (x n )] 2 f(x n )f (x n ) The Newton s method for the nonlinear systems (only for two nonlinear equations). Chapter 3 Systems of Linear Equations How to apply the Gaussian elimination method (without pivoting)(algorithmic approach) and also, discuss the partial pivoting. Give examples showing that the system has infinite number of solutions or no solution at all (singular matrix). How to apply LU factorization [only l ii = 1 (in lecture class), and u ii = 1 (in tutorial class)]. How to apply the iterative methods (Jacobi and Gauss-Seidel) to solve a linear system. The analysis of the error related to these methods (condition for convergence, diagonally dominant matrix...). Also, how to compute an error bound for both methods. Error in solving linear systems. Residual vector, condition number of a given matrix... etc. How to compute an upper bound for both absolute and relative errors. Here we must give the definitions of the vector and matrix norms (l norm only). Chapter 4: Approximating Functions How to construct the Lagrange polynomial which approximate a function f(x) at an (n + 1) distinct numbers(not the uniqueness). How to apply the divided differences to construct the Newton s polynomial (without discussing the forward or backward cases). Error in polynomial interpolation: How to compute an error bound for any x value in the interval [a, b] and a given x = x [a, b]. Interpolation using spline functions(linear Spline Only). Chapter 5 Differentiation and Integration How to derive the first and second order finite difference formulas for approximating the first and second derivatives of the function f(x) at a point x 0 using Lagrange and Taylor 4

5 polynomials (note that for the first derivative we study (Forward+Central+Backward) and for the second derivative we study only the central difference formula). How to apply these formulas including the estimation of an error bound (also, discuss the effect of error in function values). How to derive the Trapezoidal and the Simpson rules, how to apply them and to compute the error bounds (for both single and composite formulas). Chapter 6: Ordinary Differential Equations How to use the Euler s method, the Taylor method of order N and the Runge Kutta method of order two (only modified Euler s method) and order four for solving first order initial-value problems in ordinary differential equations. Also, discuss the local truncation errors for Euler and Taylor methods. 5

6 Course Syllabus- MAD6405 Numerical Analysis Spring 2007 Course Prefix/Number: MAD Course title: Numerical Analysis Course Credit Hours: 3 Website: Prerequisites or Co-Requisites: MAD4401 and MAS5107or MAS3105 Text: Matrix Computation, 3rd ed., G. GOLUB and C. VAN LOAN Course Description: Theoretical treatment of numerical methods of linear algebra supplemented with use of computers; polynomial approximations, uniform approximations, least square approximations; error analysis for numerical solutions of linear equations, algebraic eigenvalue problems. Student Learning Outcomes: After successfully completing this course, with the help of computers and software, the student will be able to 1. solve linear systems of equations; 2. solve some eigenvalue problems; 3. solve least square problems; 4. find polynomial approximations of functions. Topics Covered: Part I: Numerical Linear Algebra. General Linear Systems 1. Triangular System. 2. LU factorization. 3. Error analysis. Special Linear Systems 1. LDM and LD LT factorizations. 2. Positive definite system. 3. Banded system. 6

7 The Symmetric Eigenvalue Problems 1. Properties and decompositions. 2. Perturbations. 3. The symmetric QR algorithm. 4. Bisection method, R.Q.I, subspace iterations, D&C method and homotopy method. The unsymmetric Eigenvalue Problems 1. Properties and decompositions. 2. Perturbations. 3. Power iterations Part II: Approximation Theories. Uniform Approximation 1. Weierstrass approximation theorem, 2. Bernstein polynomials. 3. Approximation by interpolations. Least Square Approximation 1. Inner product space. 2. orthonormal system. 3. Full rank least square problems. 4. Rank deficient least square problems. Grading / Evaluation: Test1 20% Quizzes/homework 50% Final 30% There will be absolutely NO early or make-up test given. A missed test will be counted as 0, unless a valid reason is presented to the instructor. In this case, the weight will be added to final. Special Technology Utilized by Students: N/A Expectations for Academic Conduct/Plagiarism Policy: As members of the University of West Florida, we commit ourselves to honesty. As we strive for excellence in performance, integritypersonal and institutionalis our most precious asset. Honesty in our academic work is vital, and we will not knowingly act in ways which erode that integrity. Accordingly, we pledge not to cheat, nor to tolerate cheating, nor to plagiarize the work of others. We pledge to share community resources in ways that are responsible and that comply with established policies of fairness. Cooperation and competition are means to high achievement and are encouraged. Indeed, cooperation is expected unless our directive is to individual performance. We will com- 7

8 pete constructively and professionally for the purpose of stimulating high performance standards. Finally, we accept adherence to this set of expectations for academic conduct as a condition of membership in the UWF academic community. ASSISTANCE: Students with special needs who require specific examination-related or other courserelated accommodations should contact Barbara Fitzpatrick, Director of Disabled Student Services (DSS), dss@uwf.edu, (850) DSS will provide the student with a letter for the instructor that will specify any recommended accommodations. 8

9 Student Syllabus for Numerical Analysis I- Spring 2007 United Arab Emirates University Faculty of Science Department of Mathematics and Computer Science General Information:- Teacher s name: Dr. Fathi M. Allan f.allan@uaeu.ac.ae Course Title : Numerical Analysis I (3 Credit.O) Text Book : Numerical Analysis, by R. L. Burden and J. D. Faires. Course Description: Error analysis, solving nonlinear equations in one variable using : Fixed point method, Bisection method and Newton s method. Solving linear systems of equations using : Gaussian elimination method and Cholesky s method. Lagrange Interpolation, Hermite Interpolation. Eigenvalue problems. Course Objectives: Study numerical analysis techniques and methods. Learn how to use Mathematica software to solve numerical analysis problems. To explore topics related to nonlinear equations in one variable. To illustrate the applications the various topics covered by the course such as: interpolation, and linear systems to problems in science, engineering and other related areas. Student Learning Outcomes: 1. Demonstrate ability to think critically. 2. Compute the absolute and realtive errors. 3. Analyze algorithms and study their convergence. 4. Approximate the solution of nonlinear equations of one variable using various methods such as bisection method, fixed point method and Newton s methods. 5. Approximate zeros of polynomials using Muller s method. 6. Use Lagrange and Newton s interpolation techniques to approximate functions. 7. Use interpolation techniques to solve different mathematical problems. 8. Solve linear systems using different strategies such as partial pivoting. 9. Solve linear systems using different iterative methods such as Jacobi, Gauss-Seidel, SOR methods. 10. Analyze the Jacobi, Gauss-Seidel, SOR methods. 11. Compute different decomposition of matrices such as LU and Choleski s decompositions and use them to solve linear systems. 12. Use numerical differentiation and integration. 9

10 13. Use Mathematica to solve numerically mathematical problems. 14. work effectively with others. 10

11 Syllabus for the Numerical Analysis Prelim based on APPM effective August 2001 Texts: K. Atkinson, Introduction to Numerical Analysis (except Chapter 1). G. Golub and C. Van Loan, Matrix Computations, Chapters 2-5, 7, 10. K. W. Morton and D. F. Mayers, Numerical Solution of Partial Differential Equations, Chapters 2.2, 2.4, , 3.1, 3.2, 4.2, Recommended Supplemental Text: J. Stoer and R. Bulirsch, Introduction to Numerical Analysis. The following topics are covered in APPM The prelim does NOT cover any additional APPM 6610 topics. Interpolation Theory polynomial interpolation theory Newton divided differences finite differences and table-oriented interpolation formulae errors in data and forward differences further results on interpolation error Hermite interpolation piecewise polynomial interpolation, B-splines Fourier series, DFT and FFT trigonometric interpolation Approximation of Functions the Weierstrass Theorem and Taylor s Theorem the minimax approximation problem the least squares approximation problem orthogonal polynomials minimax approximation near-minimax approximations Rootfinding for Nonlinear Equations the bisection method Newton s method the secant method Muller s method a general theory for one-point iteration methods Aitken extrapolation for linearly convergent sequences the numerical evaluation of multiple roots Brent s rootfinding algorithm roots of polynomials systems of nonlinear equations Newton s method for nonlinear systems unconstrained optimization Numerical Integration the trapezoidal rule and Simpson s rule Newton-Cotes integration formulae Gaussian quadrature asymptotic error formulae and their applications 11

12 automatic numerical integration singular integrals numerical differentiation Linear Algebra vector spaces, matrices, and linear systems eigenvalues and canonical forms for matrices vector and matrix norms, condition numbers convergence and perturbation theorems Sherman-Morrison formula Numerical Solution of Systems of Linear Equations, Direct methods Gaussian elimination pivoting and scaling in Gaussian elimination variants of Gaussian elimination error analysis the residual correction method Numerical Solution of Systems of Linear Equations Iterative Methods Jacobi, Gauss-Seidel error prediction and acceleration the numerical solution of Poisson s equation the conjugate gradient method The Matrix Eigenvalue Problem eigenvalue location, error, and stability results the power method orthogonal transformations using Householder matrices, the eigenvalues of a symmetric tridiagonal matrix the QR Method, the calculation of eigenvectors and inverse iteration least squares solution of linear systems Numerical Methods for Ordinary Differential Equations, existence, uniqueness, and stability theory Euler s method, multi step methods, the midpoint method, the trapezoidal method a low-order predictor-corrector algorithm derivation of higher order multistep methods convergence and stability theory for multistep methods stiff differential equations and the method of lines single-step and Runge-Kutta methods boundary value problems Introduction to Linear Parabolic and Hyperbolic PDEs parabolic problems in one space dimension an explicit scheme, convergence, Fourier analysis an implicit scheme, parabolic problems in two space dimensions an explicit scheme ADI hyperbolic problems in one space dimension the CFL condition finite differences, stability, accuracy, and consistency, the Lax Equivalence Theorem 12

13 Numerical Analysis Syllabus Dr. Abdul Hassen Phone (856) ext Prerequisite: Linear Algebra, Ordinary Differential Equations (or concurrently) and prior computer programming experience. Text: Atkinson and Han, Elementary Numerical Analysis, 3rd Edition, Published by Wiley. Catalog Description: This course includes: elements of error analysis, real roots of an equation, polynomial approximation by finite difference and least square methods, interpolation, quadrature, numerical solution of ordinary differential equations, and numerical solutions of systems of linear equations. The student should expect to program a computer in addition to using a graphing calculator. Objective: The purpose of numerical analysis is two-fold: (1) to find acceptable approximate solutions when exact solutions are either impossible or so arduous and timeconsuming as to be impractical, and (2) to devise alternate methods of solution better suited to the capabilities of computers. While this course will involve the student in considerable computation in order to apply techniques and obtain acceptable answers, the main emphasis will be on the underlying theory. It will be necessary to draw upon a good bit of calculus, linear algebra, computer science and other branches of mathematics during the course. 13

14 School of Engineering, Tohoku University 2004 Syllabus Mano, Akira ( Professor ) / Disaster Control Research Center Course Object and Description Numerical analysis is a fundamental tool for most graduate students in science and engineering, and frequently constructs the core of their studies. The purpose of this course is to furnish the auditors with elementary skills of the analysis together with applicability to step up the higher level. Along the purpose, the course lectures on the basic theories and techniques, and requires the programming to solve the assignment. The exercise on numerical modeling for physical problems is also an important step to promote the applicability. Course Plan 1st Numerical errors. Nonlinear algebra 2nd Interporation and numerical integration 3rd Direct methods for simultaneous linear equations 4th Iterative methods for simultaneous linear equations 5th Eigenvalues and eigenvectors 6th Ordinal differential equations (1) 7th Ordinal differential equations (2) 8th Miscellaneousness 9th Partial differential equations 10th Finite difference method 11th Numerical analysis of evolution equation 12th Stability and convergence 13th Application to practical problems (1) 14th Application to practical problems (2) 15th Application to practical problems (3) Required Text and Recommended References Computational Techniques for Fluid Dynamics, Vol.1, (C.A.J. Fletcher, Springer-Verlag Lecture note. A First Course in Numerical Analysis ( Anthony Ralston and Philip Rabinowitz, McGraw-Hill, Inc.) 14

15 Undergraduate courses in numerical analysis 451. (CSE) NUMERICAL COMPUTATIONS (3) Algorithms for interpolation, numerical integration, numerical solution of nonlinear equations, linear systems and ordinary differential equations emphasizing computational properties and implementation. Students may take only one course for credit from MATH 451 and 455. Prerequisites: CMPSC 201C, 201F, or CSE 103; MATH 230 or 231. MATH/CSE 451. Numerical Computations This is an undergraduate course introducing most of the basic and classical numerical algorithms. The course is more focused on the study and implementation of these basic algorithms. The students will have to complete several computing projects in addition to other homeworks (CSE) INTRODUCTION TO NUMERICAL ANALYSIS I (3) Floating point computation, numerical root finding, interpolation, numerical quadrature, direct methods for linear systems. Students may take only one course for credit from MATH 451 and 455. Prerequisites: CMPSC 201C, 201F, or CSE 103; MATH 220; MATH 230 or (CSE) INTRODUCTION TO NUMERICAL ANALYSIS II (3) Polynomial and piecewise polynomial approximation, matrix least squares problems, numerical solution of eigenvalue problems, numerical solution of ordinary differential equations. Prerequisite: MATH 455. Graduate courses in numerical analysis 523. NUMERICAL ANALYSIS I. Approximation and Interpolation; Numerical Quadrature; Direct Methods of Numerical Linear Algebra; Numerical solution of nonlinear systems and optimization NUMERICAL ANALYSIS II. Numerical Solution of Ordinary Differential Equations; Numerical Solution of Partial Differential Equations; Some Iterative Methods of Numerical Linear Algebra. 15

16 552. (CSE 552) Numerical Solution of Partial Differential Equations (3) Finite difference methods for elliptic, parabolic, and hyperbolic differential equations. Solutions techniques for discretized systems. Finite element methods for elliptic problems. Prerequisite: MATH 402 or 404; MATH (CSE) 451 or (CSE 556) Finite Element Methods (3) Sobolev spaces, variational formulations of boundary value problems; piecewise polynomial approximation theory, convergence and stability, special methods and applications. Prerequisite: Math 412, MATH 501 and 502, or consent from instructor. MATH 523 and MATH 524. Numerical Analysis These courses form a two-semester graduate level introduction to numerical analysis. They will be mainly focused on the design and the analysis of classical as well as recently developed numerical algorithms and techniques, for the solution of variety of problems in mathematical analysis and algebra. In short, this course will provide an introduction to the basics of the mathematical theory behind scientific and engineering computing. The students who take this course should have a very good and stable knowledge of single and multivariable calculus, linear algebra and be familiar with basic facts from functional, real and complex analysis and the theory of partial differential equations. MATH 523 Numerical analysis I Approximation and Interpolation; Numerical Quadrature; Direct Methods of Numerical Linear Algebra; Numerical solution of nonlinear systems and optimization Polynomial Approximation Lagrange Interpolation Least Squares Polynomial Approximation Piecewise polynomial approximation and interpolation The Fast Fourier Transform Multipole method for special dense matrix vector product Numerical Quadrature Basic quadrature The Peano Kernel Theorem Richardson Extrapolation Asymptotic error expansions Romberg Integration Gaussian Quadrature Adaptive quadrature Monte Carlo methods for higher dimensional integrals. Direct Methods of Numerical Linear Algebra Triangular systems Gaussian elimination and LU decomposition Pivoting Backward error analysis Conditioning and roundoff errors. Numerical solution of nonlinear systems and optimization 16

17 One-point iteration Newton s method Unconstrained minimization Newton s method Line search methods Conjugate gradients MATH 524 Numerical analysis II Numerical Solution of Ordinary Differential Equations Euler s Method Linear multistep methods One step methods Stiffness Numerical Solution of Partial Differential Equations BVPs for 2nd order elliptic PDEs The five-point discretization of the Laplacian Finite element methods Difference methods for the heat equation Difference methods for hyperbolic equations Hyperbolic conservation laws Some Iterative Methods of Numerical Linear Algebra Classical iterations Multigrid methods Reference Analysis of Numerical Methods, by Eugene Isaacson and Herbert Bishop Keller; Dover Publications Introduction to Numerical Analysis, by J. Stoer and R. Bulirsch; Springer-Verlag ISBN MATH/CSE 552. Numerical Solution of Partial Differential Equations This is an introductory graduate course on numerical methods for partial differential equations. It is designed mainly for graduate students in department of mathematics. The course should also be appropriate for non-math graduate students who are good at advanced calculus and linear algebra. The students are required to do computing projects in addition to theoretical homework problems. All the graduate students in computational and applied math program are required to take this course. MATH/CSE 552. Numerical Solution of Partial Differential Equations A review of basic methods for the Poisson Equations on regular domain (1 week) The finite difference method The finite element method The finite volume method Second order elliptic boundary value equations (5 weeks) A review of qualitative properties (2 hour) Maximal principle 17

18 Existence and uniqueness (existence of classical and weak solutions) Regularity (H2 regularity of the solutions for smooth or convex domain) The finite difference method (4 hours) Basic finite difference schemes Discrete maximal principle and M-matrices Error estimates Boundary treatments The finite element method (5 hours) Linear finite element methods Error estimates: estimates in H1 norm and L2 norm Construction of more general finite element methods The finite volume method (3 hours) Basic finite volume schemes Conservation properties Relation with finite element method Error estimates High order finite volume method Direct and iterative methods for solving the discrete systems (2 weeks) Direct methods (1) Sparse matrix data structure (1) Basic iterative methods (2) Basic iterative methods Jacobi and Gauss-Seidel methods The method of subspace corrections and its convergence properties (2) Conjugate gradient methods and preconditioning (2) The multigrid method (2 weeks) Introduction of the algorthm using one dimensional problem (2 hours) Algorithmic details for /-cycle, cycle, (2 hours) V-cycle and W-cycle algorithms Convergence analysis using the method of subspace corrections (2 hours) Parabolic and hyperbolic problems (4 weeks) Model problems and stability estimates (2 hours) Examples of the methods of lines (2 hours) The Lax-Richtmyer equivalence theorem (1 hour) Stability analysis (2 hours) Discrete Fourier series (.5) von Neumann stability analysis (.5) The Kreiss matrix theory (1) Consistency, convergence and error estimates (1) Convection dominated problems (1 week) The failure of standard discretization Monotone schemes and Godunov theorem Higher order methods Nonlinear problems Textbooks and references There are many text books available, but there is no single one that would fit the aforementioned syllabus. 18

19 Major references Hackbusch, W., Elliptic differential equations : theory and numerical treatment Berlin ; New York : Springer-Verlag, c1992. [good reference for elliptic problems] Strikwerda, John C., Finite difference schemes and partial differential equations / John C. Strikwerda. Pacific Grove, Calif. : Wadsworth & Brooks/Cole Advanced Books & Software, c1989. [good reference for linear parabolic and hyperbolic problems] Johnson, Claes, Numerical solution of partial differential equations by the finite element method / Claes Johnson. Cambridge [Cambridgeshire] ; New York: Cambridge University Press, c1987. [Overall good reference for finite element method for this course; but not enough materials for theoretical analysis] Susanne Brenner and L. Ridgway Scott, The mathematical theory of finite element methods, New York : Springer-Verlag, c1994. [Chapter 3 is a good reference on the construction of a finite element space; other parts of the book are too theoretical/technical for this course] Jinchao Xu, Lecture notes for MATH/CSE 552 [covers materials that can not be found in the above three books and other major text books, especially good materials for iterative and multigrid methods, finite volume methods] 19

20 HOME PEOPLE UNDERGRADUATE GRADUATE RESEARCH DEPART- MENT HIGH SCHOOL Home > Undergraduate > Courses > Syllabi > AMSC/CMSC 466 (Introduction to Numerical Analysis I) DESCRIPTION Floating point computations, direct methods for linear systems, interpolation, solution of nonlinear equations, numerical differentiation and integration. PREREQUISITES Math 240 and 241, CMSC 105 or CMSC 106 or CMSC 114 or ENEE 114 TOPICS Floating point computation (1 week) Properties of machine arithmetic Direct methods for linear systems (4 weeks) Gaussian elimination Pivoting strategies Cholesky factorization Vector and matrix norms Conditioning and the effect of rounding error Interpolation (2 weeks) Polynomial approximation Newton and Lagrange forms Error formula (derived) Solution of nonlinear equations (3 weeks) Bisection, Secant, and Newton s method Fixed point methods Newton s method for systems Numerical differentiation and integration (3 weeks) Numerical differentiation Numerical integration TEXT: Text(s) typically used in this course. 20

21 Numerical Analysis + Lab MA : 5 Credits Prerequsites: None Root finding for nonlinear equations- Newton-Raphson, Secant, Regula-Falsi methods and their convergence, Newton?s method for system of nonlinear equations. Interpolation - Newton?s formulae, Lagrange, Hermite, Spline interpolation with error analysis. Numerical differentiation. Numerical integration- Newton-Cotes formulae - open and closed type-trapezoidal, Simpson and Weddle rules, Gaussian quadrature formulae- Gauss-Laguerre, Gauss-Hermite integration, composite integration methods, double integration. System of linear algebraic equations- Gauss elimination, Jacobi, Gauss-Seidel, relaxation methods and their convergence. Numerical methods for determining eigenvalues. 21

22 Syllabus: MATH 5338 NUMERICAL ANALYSIS (I) Web: 1. COURSE PREREQUISITES: Knowledge of calculus, linear algebra, and programming or consent of the instructor. 2. COURSE GOALS: Solution of one variable equations Interpolation and polynomial approximation Numerical differentiation and integration Direct methods for solving linear systems Iterative techniques in matrix algebra 3. TEXTBOOK: Numerical Analysis by R.L.Burden and J.D.Faires (7th Edition) 22

23 University of Houston Department of Mathematics MATH 4364 Numerical Analysis Prerequisites: MATH 2431 (Linear Algebra), MATH 3331 (Differential Equations), COSC 1301 or 2101 or equivalent experience with one programming language (computer assignments). Textbook: Numerical Analysis (8th edition), by R.L. Burden and J.D. Faires, Brooks- Cole Publishers Brief Description of MATH 4364 : This course introduces students to classical numerical methods for approximating the solutions of common mathematical problems. It allows students to deal with numerical methods both at a theoretical level and for programming purposes. This is an introductory course and will be a mix of mathematics and computing. The mathematical content of the course for this semester covers interpolation, numerical integration, direct and iterative methods for solving linear systems of algebraic equations and numerical methods for solving nonlinear algebraic equations. N.B. This is the first semester of a two semester course. The emphasis the second semester (MATH 4365) will be in particular on numerical methods for ordinary differential equations and partial differential equations. Course structure: This a ex-cathedra course, that is a mix of mathematics of computing. Student evaluation will be based on in-class exams and one final exam, homework extracted from the text and computer projects. Tentative Syllabus of the Fall semester (MATH 4364) Chapter 2 : Resolution of nonlinear equations in one variable Chapter 3 : Interpolation Chapter 4 : Numerical differentiation and numerical integration Chapter 6 : Resolution of linear systems (direct methods) Chapter 7 : Resolution of linear systems (indirect methods) Chapter 10 : Resolution of nonlinear systems (as time permits) Tentative Syllabus of the Spring semester (MATH 4365) Chapter 5 : Numerical solution of ODEs Chapter 8 : Selected topics of numerical approximation Chapter 9 : Numerical methods for computation of eigenvalues Chapter 11 : Boundary-value problem for ODEs Chapter 12 : Finite differences methods for PDE s, Introduction to finite elements for elliptic problems 23

Applied Numerical Analysis

Applied Numerical Analysis Applied Numerical Analysis Using MATLAB Second Edition Laurene V. Fausett Texas A&M University-Commerce PEARSON Prentice Hall Upper Saddle River, NJ 07458 Contents Preface xi 1 Foundations 1 1.1 Introductory

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 Mathematics

Numerical Mathematics Alfio Quarteroni Riccardo Sacco Fausto Saleri Numerical Mathematics Second Edition With 135 Figures and 45 Tables 421 Springer Contents Part I Getting Started 1 Foundations of Matrix Analysis 3 1.1 Vector

More information

NUMERICAL METHODS FOR ENGINEERING APPLICATION

NUMERICAL METHODS FOR ENGINEERING APPLICATION NUMERICAL METHODS FOR ENGINEERING APPLICATION Second Edition JOEL H. FERZIGER A Wiley-Interscience Publication JOHN WILEY & SONS, INC. New York / Chichester / Weinheim / Brisbane / Singapore / Toronto

More information

Introduction to Numerical Analysis

Introduction to Numerical Analysis J. Stoer R. Bulirsch Introduction to Numerical Analysis Second Edition Translated by R. Bartels, W. Gautschi, and C. Witzgall With 35 Illustrations Springer Contents Preface to the Second Edition Preface

More information

NUMERICAL MATHEMATICS AND COMPUTING

NUMERICAL MATHEMATICS AND COMPUTING NUMERICAL MATHEMATICS AND COMPUTING Fourth Edition Ward Cheney David Kincaid The University of Texas at Austin 9 Brooks/Cole Publishing Company I(T)P An International Thomson Publishing Company Pacific

More information

Numerical Methods for Engineers. and Scientists. Applications using MATLAB. An Introduction with. Vish- Subramaniam. Third Edition. Amos Gilat.

Numerical Methods for Engineers. and Scientists. Applications using MATLAB. An Introduction with. Vish- Subramaniam. Third Edition. Amos Gilat. Numerical Methods for Engineers An Introduction with and Scientists Applications using MATLAB Third Edition Amos Gilat Vish- Subramaniam Department of Mechanical Engineering The Ohio State University Wiley

More information

Numerical Analysis. A Comprehensive Introduction. H. R. Schwarz University of Zürich Switzerland. with a contribution by

Numerical Analysis. A Comprehensive Introduction. H. R. Schwarz University of Zürich Switzerland. with a contribution by Numerical Analysis A Comprehensive Introduction H. R. Schwarz University of Zürich Switzerland with a contribution by J. Waldvogel Swiss Federal Institute of Technology, Zürich JOHN WILEY & SONS Chichester

More information

BASIC EXAM ADVANCED CALCULUS/LINEAR ALGEBRA

BASIC EXAM ADVANCED CALCULUS/LINEAR ALGEBRA 1 BASIC EXAM ADVANCED CALCULUS/LINEAR ALGEBRA This part of the Basic Exam covers topics at the undergraduate level, most of which might be encountered in courses here such as Math 233, 235, 425, 523, 545.

More information

NUMERICAL COMPUTATION IN SCIENCE AND ENGINEERING

NUMERICAL COMPUTATION IN SCIENCE AND ENGINEERING NUMERICAL COMPUTATION IN SCIENCE AND ENGINEERING C. Pozrikidis University of California, San Diego New York Oxford OXFORD UNIVERSITY PRESS 1998 CONTENTS Preface ix Pseudocode Language Commands xi 1 Numerical

More information

Introduction to Numerical Analysis

Introduction to Numerical Analysis J. Stoer R. Bulirsch Introduction to Numerical Analysis Translated by R. Bartels, W. Gautschi, and C. Witzgall Springer Science+Business Media, LLC J. Stoer R. Bulirsch Institut fiir Angewandte Mathematik

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

A THEORETICAL INTRODUCTION TO NUMERICAL ANALYSIS

A THEORETICAL INTRODUCTION TO NUMERICAL ANALYSIS A THEORETICAL INTRODUCTION TO NUMERICAL ANALYSIS Victor S. Ryaben'kii Semyon V. Tsynkov Chapman &. Hall/CRC Taylor & Francis Group Boca Raton London New York Chapman & Hall/CRC is an imprint of the Taylor

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

Numerical Analysis for Engineers and Scientists

Numerical Analysis for Engineers and Scientists Numerical Analysis for Engineers and Scientists Striking a balance between theory and practice, this graduate-level text is perfect for students in the applied sciences. The author provides a clear introduction

More information

Numerical Methods for Engineers

Numerical Methods for Engineers Numerical Methods for Engineers SEVENTH EDITION Steven C Chopra Berger Chair in Computing and Engineering Tufts University Raymond P. Canal Professor Emeritus of Civil Engineering of Michiaan University

More information

CAM Ph.D. Qualifying Exam in Numerical Analysis CONTENTS

CAM Ph.D. Qualifying Exam in Numerical Analysis CONTENTS CAM Ph.D. Qualifying Exam in Numerical Analysis CONTENTS Preliminaries Round-off errors and computer arithmetic, algorithms and convergence Solutions of Equations in One Variable Bisection method, fixed-point

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

APPLIED NUMERICAL LINEAR ALGEBRA

APPLIED NUMERICAL LINEAR ALGEBRA APPLIED NUMERICAL LINEAR ALGEBRA James W. Demmel University of California Berkeley, California Society for Industrial and Applied Mathematics Philadelphia Contents Preface 1 Introduction 1 1.1 Basic Notation

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

CN - Numerical Computation

CN - Numerical Computation Coordinating unit: 270 - FIB - Barcelona School of Informatics Teaching unit: 749 - MAT - Department of Mathematics Academic year: Degree: 2017 BACHELOR'S DEGREE IN INFORMATICS ENGINEERING (Syllabus 2010).

More information

Computational Modeling for Physical Sciences

Computational Modeling for Physical Sciences Computational Modeling for Physical Sciences Since the invention of computers the use of computational modeling and simulations have revolutionized the way we study physical systems. Their applications

More information

Columbus State Community College Mathematics Department Public Syllabus

Columbus State Community College Mathematics Department Public Syllabus Columbus State Community College Mathematics Department Public Syllabus Course and Number: MATH 2568 Elementary Linear Algebra Credits: 4 Class Hours Per Week: 4 Prerequisites: MATH 2153 with a C or higher

More information

Numerical Analysis. Introduction to. Rostam K. Saeed Karwan H.F. Jwamer Faraidun K. Hamasalh

Numerical Analysis. Introduction to. Rostam K. Saeed Karwan H.F. Jwamer Faraidun K. Hamasalh Iraq Kurdistan Region Ministry of Higher Education and Scientific Research University of Sulaimani Faculty of Science and Science Education School of Science Education-Mathematics Department Introduction

More information

PARTIAL DIFFERENTIAL EQUATIONS

PARTIAL DIFFERENTIAL EQUATIONS MATHEMATICAL METHODS PARTIAL DIFFERENTIAL EQUATIONS I YEAR B.Tech By Mr. Y. Prabhaker Reddy Asst. Professor of Mathematics Guru Nanak Engineering College Ibrahimpatnam, Hyderabad. SYLLABUS OF MATHEMATICAL

More information

NUMERICAL METHODS USING MATLAB

NUMERICAL METHODS USING MATLAB NUMERICAL METHODS USING MATLAB Dr John Penny George Lindfield Department of Mechanical Engineering, Aston University ELLIS HORWOOD NEW YORK LONDON TORONTO SYDNEY TOKYO SINGAPORE Preface 1 An introduction

More information

Index. higher order methods, 52 nonlinear, 36 with variable coefficients, 34 Burgers equation, 234 BVP, see boundary value problems

Index. higher order methods, 52 nonlinear, 36 with variable coefficients, 34 Burgers equation, 234 BVP, see boundary value problems Index A-conjugate directions, 83 A-stability, 171 A( )-stability, 171 absolute error, 243 absolute stability, 149 for systems of equations, 154 absorbing boundary conditions, 228 Adams Bashforth methods,

More information

Numerical Analysis Preliminary Exam 10 am to 1 pm, August 20, 2018

Numerical Analysis Preliminary Exam 10 am to 1 pm, August 20, 2018 Numerical Analysis Preliminary Exam 1 am to 1 pm, August 2, 218 Instructions. You have three hours to complete this exam. Submit solutions to four (and no more) of the following six problems. Please start

More information

AMS526: Numerical Analysis I (Numerical Linear Algebra for Computational and Data Sciences)

AMS526: Numerical Analysis I (Numerical Linear Algebra for Computational and Data Sciences) AMS526: Numerical Analysis I (Numerical Linear Algebra for Computational and Data Sciences) Lecture 1: Course Overview; Matrix Multiplication Xiangmin Jiao Stony Brook University Xiangmin Jiao Numerical

More information

Preface. Figures Figures appearing in the text were prepared using MATLAB R. For product information, please contact:

Preface. Figures Figures appearing in the text were prepared using MATLAB R. For product information, please contact: Linear algebra forms the basis for much of modern mathematics theoretical, applied, and computational. The purpose of this book is to provide a broad and solid foundation for the study of advanced mathematics.

More information

SOUTHERN UNIVERSITY and A&M COLLEGE DEPARTMENT OF MATHEMATICS MATH 395 CALCULUS III AND DIFFERENTIAL EQUATIONS FOR JUNIOR ENGINEERING MAJORS

SOUTHERN UNIVERSITY and A&M COLLEGE DEPARTMENT OF MATHEMATICS MATH 395 CALCULUS III AND DIFFERENTIAL EQUATIONS FOR JUNIOR ENGINEERING MAJORS SOUTHERN UNIVERSITY and A&M COLLEGE DEPARTMENT OF MATHEMATICS MATH 395 CALCULUS III AND DIFFERENTIAL EQUATIONS FOR JUNIOR ENGINEERING MAJORS COURSE DESCRIPTION: This course combines selective topics normally

More information

Numerical Methods for Engineers and Scientists

Numerical Methods for Engineers and Scientists Numerical Methods for Engineers and Scientists Second Edition Revised and Expanded Joe D. Hoffman Department of Mechanical Engineering Purdue University West Lafayette, Indiana m MARCEL D E К К E R MARCEL

More information

MA3025 Course Prerequisites

MA3025 Course Prerequisites MA3025 Course Prerequisites MA 3025 (4-1) MA3025 (4-1) Logic and Discrete Mathematics: Provides a rigorous foundation in logic and elementary discrete mathematics. Topics from logic include modeling English

More information

Introduction to Applied Linear Algebra with MATLAB

Introduction to Applied Linear Algebra with MATLAB Sigam Series in Applied Mathematics Volume 7 Rizwan Butt Introduction to Applied Linear Algebra with MATLAB Heldermann Verlag Contents Number Systems and Errors 1 1.1 Introduction 1 1.2 Number Representation

More information

CENTRAL TEXAS COLLEGE SYLLABUS FOR MATH 2318 Linear Algebra. Semester Hours Credit: 3

CENTRAL TEXAS COLLEGE SYLLABUS FOR MATH 2318 Linear Algebra. Semester Hours Credit: 3 CENTRAL TEXAS COLLEGE SYLLABUS FOR MATH 2318 Linear Algebra Semester Hours Credit: 3 I. INTRODUCTION A. Linear Algebra is a three semester-hour course. This course introduces and provides models for application

More information

Numerical Methods in Matrix Computations

Numerical Methods in Matrix Computations Ake Bjorck Numerical Methods in Matrix Computations Springer Contents 1 Direct Methods for Linear Systems 1 1.1 Elements of Matrix Theory 1 1.1.1 Matrix Algebra 2 1.1.2 Vector Spaces 6 1.1.3 Submatrices

More information

Semester I. Mathematics I (Calculus with applications in Chemistry I) Code: MM

Semester I. Mathematics I (Calculus with applications in Chemistry I) Code: MM University of Kerala Complementary Course in Mathematics for First Degree Programme in Chemistry Semester I Mathematics I (Calculus with applications in Chemistry I) Code: MM 1131.2 Instructional hours

More information

Numerical Methods with MATLAB

Numerical Methods with MATLAB Numerical Methods with MATLAB A Resource for Scientists and Engineers G. J. BÖRSE Lehigh University PWS Publishing Company I(T)P AN!NTERNATIONAL THOMSON PUBLISHING COMPANY Boston Albany Bonn Cincinnati

More information

TEACHING NUMERICAL LINEAR ALGEBRA AT THE UNDERGRADUATE LEVEL by Biswa Nath Datta Department of Mathematical Sciences Northern Illinois University

TEACHING NUMERICAL LINEAR ALGEBRA AT THE UNDERGRADUATE LEVEL by Biswa Nath Datta Department of Mathematical Sciences Northern Illinois University TEACHING NUMERICAL LINEAR ALGEBRA AT THE UNDERGRADUATE LEVEL by Biswa Nath Datta Department of Mathematical Sciences Northern Illinois University DeKalb, IL 60115 E-mail: dattab@math.niu.edu What is Numerical

More information

Course Plan for Spring Semester 2018

Course Plan for Spring Semester 2018 Course Plan for Spring Semester 2018 Tezpur University Course: MS 103, Mathematics-II (For the B. Tech. Students of the School of Engineering) L3-T1-P0-CH4-CR4 Name of the instructors: 1. Mr. Parama Dutta

More information

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad Course Title Course Code INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad - 500 043 CIVIL ENGINEERING COURSE DESCRIPTION MATHEMATICS-II A30006 Course Structure Lectures Tutorials

More information

Computational Methods

Computational Methods Numerical Computational Methods Revised Edition P. B. Patil U. P. Verma Alpha Science International Ltd. Oxford, U.K. CONTENTS Preface List ofprograms v vii 1. NUMER1CAL METHOD, ERROR AND ALGORITHM 1 1.1

More information

MATH 215 LINEAR ALGEBRA ASSIGNMENT SHEET odd, 14, 25, 27, 29, 37, 41, 45, 47, 49, 51, 55, 61, 63, 65, 67, 77, 79, 81

MATH 215 LINEAR ALGEBRA ASSIGNMENT SHEET odd, 14, 25, 27, 29, 37, 41, 45, 47, 49, 51, 55, 61, 63, 65, 67, 77, 79, 81 MATH 215 LINEAR ALGEBRA ASSIGNMENT SHEET TEXTBOOK: Elementary Linear Algebra, 7 th Edition, by Ron Larson 2013, Brooks/Cole Cengage Learning ISBN-13: 978-1-133-11087-3 Chapter 1: Systems of Linear Equations

More information

1 Number Systems and Errors 1

1 Number Systems and Errors 1 Contents 1 Number Systems and Errors 1 1.1 Introduction................................ 1 1.2 Number Representation and Base of Numbers............. 1 1.2.1 Normalized Floating-point Representation...........

More information

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS CALCULUS III MATH 2110

PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS CALCULUS III MATH 2110 PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS CALCULUS III MATH 2110 Class Hours: 4.0 Credit Hours: 4.0 Laboratory Hours: 0.0 Revised: Spring 07 Catalog Course Description: Calculus of

More information

Syllabus for Applied Mathematics Graduate Student Qualifying Exams, Dartmouth Mathematics Department

Syllabus for Applied Mathematics Graduate Student Qualifying Exams, Dartmouth Mathematics Department Syllabus for Applied Mathematics Graduate Student Qualifying Exams, Dartmouth Mathematics Department Alex Barnett, Scott Pauls, Dan Rockmore August 12, 2011 We aim to touch upon many topics that a professional

More information

Elementary Numerical Mathematics

Elementary Numerical Mathematics Lecture on Elementary Numerical Mathematics Winter Term 2017/18 Prof. Dr. Gerhard Wellein Department for Computer Science HPC Services, Regionales Rechenzentrum Erlangen (RRZE) Organization Lecture (4

More information

Contents. Preface to the Third Edition (2007) Preface to the Second Edition (1992) Preface to the First Edition (1985) License and Legal Information

Contents. Preface to the Third Edition (2007) Preface to the Second Edition (1992) Preface to the First Edition (1985) License and Legal Information Contents Preface to the Third Edition (2007) Preface to the Second Edition (1992) Preface to the First Edition (1985) License and Legal Information xi xiv xvii xix 1 Preliminaries 1 1.0 Introduction.............................

More information

Fundamental Numerical Methods for Electrical Engineering

Fundamental Numerical Methods for Electrical Engineering Stanislaw Rosloniec Fundamental Numerical Methods for Electrical Engineering 4y Springei Contents Introduction xi 1 Methods for Numerical Solution of Linear Equations 1 1.1 Direct Methods 5 1.1.1 The Gauss

More information

MATH 345 Differential Equations

MATH 345 Differential Equations MATH 345 Differential Equations Spring 2018 Instructor: Time: Dr. Manuela Girotti; office: Weber 223C email: manuela.girotti@colostate.edu Mon-Tue-Wed-Fri 1:00pm-1:50pm Location: Engineering E 206 Office

More information

MATHEMATICS. Course Syllabus. Section A: Linear Algebra. Subject Code: MA. Course Structure. Ordinary Differential Equations

MATHEMATICS. Course Syllabus. Section A: Linear Algebra. Subject Code: MA. Course Structure. Ordinary Differential Equations MATHEMATICS Subject Code: MA Course Structure Sections/Units Section A Section B Section C Linear Algebra Complex Analysis Real Analysis Topics Section D Section E Section F Section G Section H Section

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

Special Two-Semester Linear Algebra Course (Fall 2012 and Spring 2013)

Special Two-Semester Linear Algebra Course (Fall 2012 and Spring 2013) Special Two-Semester Linear Algebra Course (Fall 2012 and Spring 2013) The first semester will concentrate on basic matrix skills as described in MA 205, and the student should have one semester of calculus.

More information

Numerical Solution of partial differential equations

Numerical Solution of partial differential equations G. D. SMITH Brunei University Numerical Solution of partial differential equations FINITE DIFFERENCE METHODS THIRD EDITION CLARENDON PRESS OXFORD Contents NOTATION 1. INTRODUCTION AND FINITE-DIFFERENCE

More information

Applied Linear Algebra

Applied Linear Algebra Applied Linear Algebra Peter J. Olver School of Mathematics University of Minnesota Minneapolis, MN 55455 olver@math.umn.edu http://www.math.umn.edu/ olver Chehrzad Shakiban Department of Mathematics University

More information

Numerical Methods for Engineers

Numerical Methods for Engineers Numerical Methods for Engineers S EVEN TH ED I TI O N Steven C. Chapra Berger Chair in Computing and Engineering Tufts University Raymond P. Canale Professor Emeritus of Civil Engineering University of

More information

Intermediate Algebra

Intermediate Algebra Intermediate Algebra COURSE OUTLINE FOR MATH 0312 (REVISED JULY 29, 2015) Catalog Description: Topics include factoring techniques, radicals, algebraic fractions, absolute values, complex numbers, graphing

More information

Math 411 Preliminaries

Math 411 Preliminaries Math 411 Preliminaries Provide a list of preliminary vocabulary and concepts Preliminary Basic Netwon's method, Taylor series expansion (for single and multiple variables), Eigenvalue, Eigenvector, Vector

More information

Math 410 Linear Algebra Summer Session American River College

Math 410 Linear Algebra Summer Session American River College Course Information Instructor: Kristin Lui Email: luik@arc.losrios.edu Office Hours: By appointment Location: Liberal Arts 163 ARC Main Campus Meet Times: Tuesday/Thursday 6:30 pm 9:40 pm Dates: June 16,

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

INTRODUCTION, FOUNDATIONS

INTRODUCTION, FOUNDATIONS 1 INTRODUCTION, FOUNDATIONS ELM1222 Numerical Analysis Some of the contents are adopted from Laurene V. Fausett, Applied Numerical Analysis using MATLAB. Prentice Hall Inc., 1999 2 Today s lecture Information

More information

LECTURES IN BASIC COMPUTATIONAL NUMERICAL ANALYSIS

LECTURES IN BASIC COMPUTATIONAL NUMERICAL ANALYSIS Ax = b Z b a " 1 f(x) dx = h 2 (f X 1 + f n )+ f i #+ O(h 2 ) n 1 i=2 LECTURES IN BASIC COMPUTATIONAL NUMERICAL ANALYSIS x (m+1) = x (m) J(x (m) ) 1 F (x (m) ) p n (x) = X n+1 i=1 " n+1 Y j=1 j6=i # (x

More information

Math 200 A and B: Linear Algebra Spring Term 2007 Course Description

Math 200 A and B: Linear Algebra Spring Term 2007 Course Description Math 200 A and B: Linear Algebra Spring Term 2007 Course Description February 25, 2007 Instructor: John Schmitt Warner 311, Ext. 5952 jschmitt@middlebury.edu Office Hours: Monday, Wednesday 11am-12pm,

More information

JEFFERSON COLLEGE COURSE SYLLABUS MTH 141 PRECALCULUS. 5 Credit Hours. Prepared by John M Johny August 2012

JEFFERSON COLLEGE COURSE SYLLABUS MTH 141 PRECALCULUS. 5 Credit Hours. Prepared by John M Johny August 2012 JEFFERSON COLLEGE COURSE SYLLABUS MTH 141 PRECALCULUS 5 Credit Hours Prepared by John M Johny August 2012 Ms. Shirley Davenport, Dean, Arts & Science Education Ms. Linda Abernathy, Math, Science, and Business

More information

FBE / Advanced Topics in Engineering Mathematics. Date Fall Credits 3 credits Course Title

FBE / Advanced Topics in Engineering Mathematics. Date Fall Credits 3 credits Course Title Date Fall 2015-2016 Credits 3 credits Course Title Course Number Math 501 Advanced Topics in Engineering Mathematics Pre-requisite (s) None Co-requisite (s) None Hours 36 Out of Class 90 Work Hours Place

More information

NUMERICAL METHODS. lor CHEMICAL ENGINEERS. Using Excel', VBA, and MATLAB* VICTOR J. LAW. CRC Press. Taylor & Francis Group

NUMERICAL METHODS. lor CHEMICAL ENGINEERS. Using Excel', VBA, and MATLAB* VICTOR J. LAW. CRC Press. Taylor & Francis Group NUMERICAL METHODS lor CHEMICAL ENGINEERS Using Excel', VBA, and MATLAB* VICTOR J. LAW CRC Press Taylor & Francis Group Boca Raton London New York CRC Press is an imprint of the Taylor & Francis Croup,

More information

AMS526: Numerical Analysis I (Numerical Linear Algebra)

AMS526: Numerical Analysis I (Numerical Linear Algebra) AMS526: Numerical Analysis I (Numerical Linear Algebra) Lecture 1: Course Overview & Matrix-Vector Multiplication Xiangmin Jiao SUNY Stony Brook Xiangmin Jiao Numerical Analysis I 1 / 20 Outline 1 Course

More information

HOSTOS COMMUNITY COLLEGE DEPARTMENT OF MATHEMATICS

HOSTOS COMMUNITY COLLEGE DEPARTMENT OF MATHEMATICS HOSTOS COMMUNITY COLLEGE DEPARTMENT OF MATHEMATICS MAT 217 Linear Algebra CREDIT HOURS: 4.0 EQUATED HOURS: 4.0 CLASS HOURS: 4.0 PREREQUISITE: PRE/COREQUISITE: MAT 210 Calculus I MAT 220 Calculus II RECOMMENDED

More information

M E M O R A N D U M. Faculty Senate approved November 1, 2018

M E M O R A N D U M. Faculty Senate approved November 1, 2018 M E M O R A N D U M Faculty Senate approved November 1, 2018 TO: FROM: Deans and Chairs Becky Bitter, Sr. Assistant Registrar DATE: October 23, 2018 SUBJECT: Minor Change Bulletin No. 5 The courses listed

More information

The University of Western Ontario Faculty of Engineering DEPARTMENT OF CHEMICAL AND BIOCHEMICAL ENGINEERING

The University of Western Ontario Faculty of Engineering DEPARTMENT OF CHEMICAL AND BIOCHEMICAL ENGINEERING The University of Western Ontario Faculty of Engineering DEPARTMENT OF CHEMICAL AND BIOCHEMICAL ENGINEERING CBE 2291b Computational Methods for Engineers Course Outline 2013-2014 The objective of this

More information

COURSE SYLLABUS (Formally the CIS)

COURSE SYLLABUS (Formally the CIS) COURSE SYLLABUS (Formally the CIS) COURSE NUMBER AND TITLE: MATH 2318.01 - Linear algebra COURSE (CATALOG) DESCRIPTION: An introductory course in linear algebra. Topics include system of linear equations,

More information

Index. C 2 ( ), 447 C k [a,b], 37 C0 ( ), 618 ( ), 447 CD 2 CN 2

Index. C 2 ( ), 447 C k [a,b], 37 C0 ( ), 618 ( ), 447 CD 2 CN 2 Index advection equation, 29 in three dimensions, 446 advection-diffusion equation, 31 aluminum, 200 angle between two vectors, 58 area integral, 439 automatic step control, 119 back substitution, 604

More information

An Introduction to Numerical Analysis

An Introduction to Numerical Analysis An Introduction to Numerical Analysis Endre Süli and David F. Mayers University of Oxford published by the press syndicate of the university of cambridge The Pitt Building, Trumpington Street, Cambridge,

More information

Review for Exam 2 Ben Wang and Mark Styczynski

Review for Exam 2 Ben Wang and Mark Styczynski Review for Exam Ben Wang and Mark Styczynski This is a rough approximation of what we went over in the review session. This is actually more detailed in portions than what we went over. Also, please note

More information

Third Edition. William H. Press. Raymer Chair in Computer Sciences and Integrative Biology The University of Texas at Austin. Saul A.

Third Edition. William H. Press. Raymer Chair in Computer Sciences and Integrative Biology The University of Texas at Austin. Saul A. NUMERICAL RECIPES The Art of Scientific Computing Third Edition William H. Press Raymer Chair in Computer Sciences and Integrative Biology The University of Texas at Austin Saul A. Teukolsky Hans A. Bethe

More information

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS COLLEGE ALGEBRA MATH 1130 Class Hours: 3.0 Credit Hours: 3.0 Laboratory Hours: 0.0 Date Revised: Fall 2017 Catalog Course Description: This course is

More information

San Jose State University Department of Mechanical and Aerospace Engineering ME 230, Advanced Mechanical Engineering Analysis, Fall 2015

San Jose State University Department of Mechanical and Aerospace Engineering ME 230, Advanced Mechanical Engineering Analysis, Fall 2015 San Jose State University Department of Mechanical and Aerospace Engineering ME 230, Advanced Mechanical Engineering Analysis, Fall 2015 Instructor: Office Location: Younes Shabany TBD Telephone: (408)

More information

Numerical Analysis. Elements of. Second Edition. Radhey S. Gupta

Numerical Analysis. Elements of. Second Edition. Radhey S. Gupta Elements of Numerical Analysis Second Edition Cambridge House, 4381/4 Ansari Road, Daryaganj, Delhi 110002, India Cambridge University Press is part of the University of Cambridge. It furthers the University

More information

Leon, Chap. 1. Chap. 2

Leon, Chap. 1. Chap. 2 Linear Algebra for Dierential Equations Math 309.501, 309.502 Spring, 2014 Section 501: MWF 10:2011:10 (BLOC 164) Section 502: MWF 11:3012:20 (BLOC 164) Instructor: Prof. Thomas Vogel Oce: 629C Blocker

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

Guide for Ph.D. Area Examination in Applied Mathematics

Guide for Ph.D. Area Examination in Applied Mathematics Guide for Ph.D. Area Examination in Applied Mathematics (for graduate students in Purdue University s School of Mechanical Engineering) (revised Fall 2016) This is a 3 hour, closed book, written examination.

More information

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS CALCULUS III MATH 2110

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS CALCULUS III MATH 2110 PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS CALCULUS III MATH 2110 Class Hours: 4.0 Credit Hours: 4.0 Laboratory Hours: 0.0 Revised: Fall 2012 Catalog Course Description: Calculus of functions

More information

LINEAR ALGEBRA: M340L EE, 54300, Fall 2017

LINEAR ALGEBRA: M340L EE, 54300, Fall 2017 LINEAR ALGEBRA: M340L EE, 54300, Fall 2017 TTh 3:30 5:00pm Room: EER 1.516 Click for printable PDF Version Click for Very Basic Matlab Pre requisite M427J Instructor: John E Gilbert E mail: gilbert@math.utexas.edu

More information

Engineering. Mathematics. GATE 2019 and ESE 2019 Prelims. For. Comprehensive Theory with Solved Examples

Engineering. Mathematics. GATE 2019 and ESE 2019 Prelims. For. Comprehensive Theory with Solved Examples Thoroughly Revised and Updated Engineering Mathematics For GATE 2019 and ESE 2019 Prelims Comprehensive Theory with Solved Examples Including Previous Solved Questions of GATE (2003-2018) and ESE-Prelims

More information

Syllabus (Session )

Syllabus (Session ) Syllabus (Session 2016-17) Department of Mathematics nstitute of Applied Sciences & Humanities AHM-1101: ENGNEERNG MATHEMATCS Course Objective: To make the students understand the concepts of Calculus,

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

Math Linear Algebra Spring Term 2014 Course Description

Math Linear Algebra Spring Term 2014 Course Description Math 200 - Linear Algebra Spring Term 2014 Course Description February 6, 2014 Instructor: John Schmitt Office: Warner 311, Tel: Ext. 5952 E-mail: jschmitt@middlebury.edu Office Hours: Tuesday 1:30pm 3pm,

More information

Numerical Methods for Partial Differential Equations CAAM 452. Spring 2005

Numerical Methods for Partial Differential Equations CAAM 452. Spring 2005 Numerical Methods for Partial Differential Equations Instructor: Tim Warburton Class Location: Duncan Hall 1046 Class Time: 9:5am to 10:40am Office Hours: 10:45am to noon in DH 301 CAAM 45 Spring 005 Homeworks

More information

JEFFERSON COLLEGE COURSE SYLLABUS. MTH 201 CALCULUS III 5 Credit Hours. Prepared by: John M Johny August 2012

JEFFERSON COLLEGE COURSE SYLLABUS. MTH 201 CALCULUS III 5 Credit Hours. Prepared by: John M Johny August 2012 JEFFERSON COLLEGE COURSE SYLLABUS MTH 201 CALCULUS III 5 Credit Hours Prepared by: John M Johny August 2012 Dr. Robert Brieler, Division Chair, Math & Science Dr. Shirley Davenport, Dean, Arts & Science

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

SYLLABUS FOR [FALL/SPRING] SEMESTER, 201x

SYLLABUS FOR [FALL/SPRING] SEMESTER, 201x SYLLABUS FOR [FALL/SPRING] SEMESTER, 201x Course Title: College Algebra and Trigonometry Instructor: [Instructor Name] Credit Hours: 5 Office: [Office Location] Course Number: MATH 1340-00x Hours: [Office

More information

CS 450 Numerical Analysis. Chapter 8: Numerical Integration and Differentiation

CS 450 Numerical Analysis. Chapter 8: Numerical Integration and Differentiation Lecture slides based on the textbook Scientific Computing: An Introductory Survey by Michael T. Heath, copyright c 2018 by the Society for Industrial and Applied Mathematics. http://www.siam.org/books/cl80

More information

Columbus State Community College Mathematics Department. CREDITS: 5 CLASS HOURS PER WEEK: 5 PREREQUISITES: MATH 2173 with a C or higher

Columbus State Community College Mathematics Department. CREDITS: 5 CLASS HOURS PER WEEK: 5 PREREQUISITES: MATH 2173 with a C or higher Columbus State Community College Mathematics Department Course and Number: MATH 2174 - Linear Algebra and Differential Equations for Engineering CREDITS: 5 CLASS HOURS PER WEEK: 5 PREREQUISITES: MATH 2173

More information

NEW RIVER COMMUNITY COLLEGE DUBLIN, VIRGINIA COURSE PLAN

NEW RIVER COMMUNITY COLLEGE DUBLIN, VIRGINIA COURSE PLAN NEW RIVER COMMUNITY COLLEGE DUBLIN, VIRGINIA COURSE PLAN Course Number and Title: MTH 279 Ordinary Differential Equations Prepared by: Mathematics Department (Date) Approved by: (Dean) (Date) I. Course

More information

University of Texas-Austin - Integration of Computing

University of Texas-Austin - Integration of Computing University of Texas-Austin - Integration of Computing During 2001-2002 the Department of Chemical Engineering at UT-Austin revamped the computing thread in its curriculum in order to strengthen student

More information

LAGUARDIA COMMUNITY COLLEGE CITY UNIVERSITY OF NEW YORK DEPARTMENT OF MATHEMATICS, ENGINEERING AND COMPUTER SCIENCE

LAGUARDIA COMMUNITY COLLEGE CITY UNIVERSITY OF NEW YORK DEPARTMENT OF MATHEMATICS, ENGINEERING AND COMPUTER SCIENCE LAGUARDIA COMMUNITY COLLEGE CITY UNIVERSITY OF NEW YORK DEPARTMENT OF MATHEMATICS, ENGINEERING AND COMPUTER SCIENCE MAT 201 - CALCULUS I PRE-REQUISITES: MAT 200 (PRECALCULUS) OR ITS EQUIVALENT BY WAIVER

More information

Math 330 (Section 7699 ): Fall 2015 Syllabus

Math 330 (Section 7699 ): Fall 2015 Syllabus College of Staten Island, City University of New York (CUNY) Math 330 (Section 7699 ): Fall 2015 Syllabus Instructor: Joseph Maher Applied Mathematical Analysis I Office: 1S-222 Phone: (718) 982-3623 Email:

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

Name of the Student: Unit I (Solution of Equations and Eigenvalue Problems)

Name of the Student: Unit I (Solution of Equations and Eigenvalue Problems) Engineering Mathematics 8 SUBJECT NAME : Numerical Methods SUBJECT CODE : MA6459 MATERIAL NAME : University Questions REGULATION : R3 UPDATED ON : November 7 (Upto N/D 7 Q.P) (Scan the above Q.R code for

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