INTRODUCTION, FOUNDATIONS

Size: px
Start display at page:

Download "INTRODUCTION, FOUNDATIONS"

Transcription

1 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 2 Today s lecture Information about the course What is numerical analysis? Applied Problems Numerical Techniques Analysis

3 3 Information about the course Course Information Instructor: Dr. Muharrem Mercimek Office: A-216 Office Hours: Monday 13:00-16:00 Class Location: C-150 Group: 1-2 Course Materials:

4 4 Information about the course Textbook and course Materials Main Text Book: Laurene V. Fausett, Applied Numerical Analysis using MATLAB. Prentice Hall Inc., 1999 OR Laurene V. Fausett, Applied Numerical Analysis using MATLAB. 2 nd Ed., Pearson Inc., 2007.

5 5 Information about the course Grading Assignments: 15% Class Attendance: 10% Exams: 75% Assignments There will be individual programming assignments and these will be listed on the schedule page. Due dates will be specified and the students should submit their material on time. Program submissions should be the outcome of each student s own endeavors. Collaborative study is encouraged, but any code and document you prepare must be your own. Submissions must include source codes as well as the documentations and data files when needed. When submitting your Assignments via always zip it, and name it like ELM1222_YourName_YourNumber_AssignmentNumber.{zip or rar} When submitting an assignment always put a subject title relevant to why you are sending it. You can use the name of your zip file again.

6 KOM1042 Discrete Mathematics Dr Muharrem Mercimek 6 Information about the course Week Subjects Preparation 1 Introduction, Foundations Textbook Ch1 2 Solving Equations of one Variable Textbook Ch2 3 Linear Equation System Solution - Direct Methods Textbook Ch3 4 Linear Equation System Solution - iterative Methods Textbook Ch4 5 LU Factorization Textbook Ch6 6 Eigenvalues, Eigenvectors Textbook Ch7 7 Mid-term 1 8 QR factorization Textbook Ch8 9 Interpolation Textbook Ch9 10 Function Approximation I Textbook Ch10 11 Function Approximation II Textbook Ch10 12 Mid-term 2 13 Numerical Differentiation and Integration I Textbook Ch11 14 Numerical Differentiation and Integration II Textbook Ch11 15 Final Exam

7 7 Information about the course Programming environment MATLAB 2008 or higher with basic toolboxes, when needed. Academic Honesty Any misconduct in this course is considered a serious offense and strong penalties will be the results of such behaviors. It is cheating to copy others code. Fake program outputs and documents is also considered as cheating.

8 8 FOUNDATIONS Some of the contents are adopted from Laurene V. Fausett, Applied Numerical Analysis using MATLAB. Prentice Hall Inc., 1999

9 9 Applied Problems Nonlinear Functions To illustrate the types of problems for which a numerical solution may be desired. There are problems we can solve with algebra or calculus On the other hand there closely related problems for which not exact solution can be found The zeros of y = x 2 3 can be found exactly by quadratic formula But there is no such method for most non-linear functions It is proven that no formula exist for 5 th order functions-polynomials. In Numerical Analysis there are many methods to approximate the zeros of nonlinear functions (bisection, newton, etc.)

10 10 Applied Problems Linear Systems 4x 1 + x 2 = 6 x 1 + 5x 2 = 9 A = x = x 1 x 2 b == 6 9 Ax = b The solution is not straightforward. We can apply some numerical techniques. Gaussian elimination systematically transforms the system to an equivalent system. If the Gaussian elimination could be carried out exactly the main issue would be computational efficiency.

11 11 Applied Problems Numerical Integrations Fundamental theorem of calculus states that the definite integral of a function can be from the ant-derivative of the function. For many functions it is easier to employ numerical techniques for finding definite integrals. We can approximate the function to be integrated x 3 dx

12 12 Some Numerical Techniques- Fixed point Iteration Fixed-point iteration To find the square root of a positive number c Rewrite the equation x 2 = c as an implicit equation Root of 3 Fixed point form x = g x = 1 2 x + c x Starting with initial guess x0 Evaluate the function up to an iteration number or until the update is so small x 1 = 1 2 (x 0 + c x 0 ) x k = 1 2 (x k 1 + c x k 1 )

13 13 Some Numerical Techniques- Gaussian Elimination 4x 1 + x 2 = 6 x 1 + 5x 2 = 9 A = x = x 1 x 2 b == 6 9 Ax = b r1: r2: r r1 + r x 2 = = 2, x 1 = = 1

14 Some Numerical Techniques- Trapezoid Rule Approximates the definite integral a b f(x) dx b f(x) a dx h (f a + f b ) 2 Approximation of 3 1 dx 1 x 3 14 Accuracy depends on the length of the interval over which the approximation is imposed (i.e., on the value of h) Influenced by the characteristics of the function f

15 15 Analysis-Convergence For iterative methods Does the process converge? When do we stop? x = g x = cos x x 0 = 0.5 x = g x = 1 x 3 x 0 = 0.5

16 16 Analysis-when to stop the iteration If the numerical technique uses an iterative process, the iterations can be stopped after a while a) If absolute difference of the exact solution and the approximation at k. iteration is in within a specified tolerance x x k < tol1 (normally x* is not known when using a numerical technique) b) If absolute difference from one iteration to the other is in within a specified tolerance x k x k 1 < tol2 c) It the iteration number reaches to a maximum iteration number iter < iteration_number

17 17 Analysis-is the result good? a) Complexity of the approximation Let the approximation error be error = x x k or error = (x x k ) For some numerical techniques we have to limit the number of terms towards approximation. e.g: Taylor expansion is f x + h = f x + h. f x + h2 2! f x + h3 3! f x + + hn n! f(n) x Where f (n) ( ) denotes the nth derivative of f( ) f x is a function of x f x + h is a function of x+h (h is a small value) Taylor expansion puts the relationship between f x and f x + h For approximation of f x + h f h = 1 + h + h2 + h3 + + hn 2! 3! n! terms and omit the others = e x+h around x = 0 with a small h infinite number of terms but instead we can involve with a number of f h = 1 + h + h2 + h3 + O 2! 3! h4 here we omit the sum of the remaining terms denoted with O h 4 O( ) describes the error with limiting number of terms in use.

18 18 Analysis- is the result good? b) Floating Point Representation error On a computer we can represent integer numbers easily 255 is always 255. When it comes to the real numbers they have to be represented approximately. The value of pi as an example can only be approximated differently when represented with different number of digits. This brings an error in the approximation because numbers used are different.

19 19 Analysis - Round-off error c) Round off Errors During calculations/computing sometimes we round the number Rounding to 3 most significant digits after the decimal point 0, the calculations when rounding: (0, ) = =0.998 Or 0,9900+( )= =0.999 In a numerical analysis these two number will lead to different calculations/computing kucg.korea.ac.kr

SOLVING EQUATIONS OF ONE VARIABLE

SOLVING EQUATIONS OF ONE VARIABLE 1 SOLVING EQUATIONS OF ONE VARIABLE 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

More information

Numerical Methods. King Saud University

Numerical Methods. King Saud University Numerical Methods King Saud University Aims In this lecture, we will... Introduce the topic of numerical methods Consider the Error analysis and sources of errors Introduction A numerical method which

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

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

Analysis Methods in Atmospheric and Oceanic Science

Analysis Methods in Atmospheric and Oceanic Science Analysis Methods in Atmospheric and Oceanic Science 1 AOSC 652 Week 7, Day 1 10 Oct 2016 Student projects: 20% of the final grade: you will receive a numerical score for the project and final grade will

More information

5. Hand in the entire exam booklet and your computer score sheet.

5. Hand in the entire exam booklet and your computer score sheet. WINTER 2016 MATH*2130 Final Exam Last name: (PRINT) First name: Student #: Instructor: M. R. Garvie 19 April, 2016 INSTRUCTIONS: 1. This is a closed book examination, but a calculator is allowed. The test

More information

Analysis Methods in Atmospheric and Oceanic Science

Analysis Methods in Atmospheric and Oceanic Science Analysis Methods in Atmospheric and Oceanic Science AOSC 652 Week 7, Day 1 13 Oct 2014 1 Student projects: 20% of the final grade: you will receive a numerical score for the project and final grade will

More information

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

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

Course Information 2DM60 Wiskunde II (Mathematics II, code 2DM60)

Course Information 2DM60 Wiskunde II (Mathematics II, code 2DM60) Course Information 2DM60 Wiskunde II (Mathematics II, code 2DM60) Responsible lecturer: dr. ir. R. Duits R.Duits@tue.nl (office: MF 5.071a/Gemini 2.110, tel: 2859/3037) Instructor I: ir. Tom Dela Haije

More information

Hani Mehrpouyan, California State University, Bakersfield. Signals and Systems

Hani Mehrpouyan, California State University, Bakersfield. Signals and Systems Hani Mehrpouyan, Department of Electrical and Computer Engineering, California State University, Bakersfield Lecture 1 (Intro, History and Background) April 4 th, 2013 The material in these lectures is

More information

Exam 2. Average: 85.6 Median: 87.0 Maximum: Minimum: 55.0 Standard Deviation: Numerical Methods Fall 2011 Lecture 20

Exam 2. Average: 85.6 Median: 87.0 Maximum: Minimum: 55.0 Standard Deviation: Numerical Methods Fall 2011 Lecture 20 Exam 2 Average: 85.6 Median: 87.0 Maximum: 100.0 Minimum: 55.0 Standard Deviation: 10.42 Fall 2011 1 Today s class Multiple Variable Linear Regression Polynomial Interpolation Lagrange Interpolation Newton

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

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

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

MATH-3150H-A: Partial Differential Equation 2018WI - Peterborough Campus

MATH-3150H-A: Partial Differential Equation 2018WI - Peterborough Campus MATH-3150H-A: Partial Differential Equation 2018WI - Peterborough Campus Instructor: Instructor: Kenzu Abdella Email Address: kabdella@trentu.ca Phone Number: 705-748-1011 x7327 Office: GSC 339 Office

More information

Nonlinear Equations and Continuous Optimization

Nonlinear Equations and Continuous Optimization Nonlinear Equations and Continuous Optimization Sanzheng Qiao Department of Computing and Software McMaster University March, 2014 Outline 1 Introduction 2 Bisection Method 3 Newton s Method 4 Systems

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

INFORMATION ABOUT THE COURSE

INFORMATION ABOUT THE COURSE KOM2751 Analog Electronics :: Dr. Muharrem Mercimek :: YTU - Control and Automation Dept. 1 INFORMATION ABOUT THE COURSE KOM2751 Analog Electronics KOM2751 Analog Electronics :: Dr. Muharrem Mercimek ::

More information

Numerical Methods I Solving Nonlinear Equations

Numerical Methods I Solving Nonlinear Equations Numerical Methods I Solving Nonlinear Equations Aleksandar Donev Courant Institute, NYU 1 donev@courant.nyu.edu 1 MATH-GA 2011.003 / CSCI-GA 2945.003, Fall 2014 October 16th, 2014 A. Donev (Courant Institute)

More information

ECE 516: System Control Engineering

ECE 516: System Control Engineering ECE 516: System Control Engineering This course focuses on the analysis and design of systems control. This course will introduce time-domain systems dynamic control fundamentals and their design issues

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

Linear Algebra. Instructor: Justin Ryan

Linear Algebra. Instructor: Justin Ryan Linear Algebra Instructor: Justin Ryan ryan@math.wichita.edu Department of Mathematics, Statistics, and Physics Wichita State University Wichita, Kansas Summer 2014 DRAFT 3 June 2014 Preface These lecture

More information

Quinsigamond Community College School of Math and Science

Quinsigamond Community College School of Math and Science Instructor's Information: Instructor: Office: Email: Telephone: 508-854-2400 Quinsigamond Community College School of Math and Science Course Information:

More information

ORF 363/COS 323 Final Exam, Fall 2018

ORF 363/COS 323 Final Exam, Fall 2018 Name: Princeton University ORF 363/COS 323 Final Exam, Fall 2018 January 16, 2018 Instructor: A.A. Ahmadi AIs: Dibek, Duan, Gong, Khadir, Mirabelli, Pumir, Tang, Yu, Zhang 1. Please write out and sign

More information

Department of Physics & Astronomy Trent University

Department of Physics & Astronomy Trent University Department of Physics & Astronomy Trent University PHYS 2610H : INTRODUCTORY QUANTUM PHYSICS 2017FA PETERBOROUGH Instructor: Balaji Subramanian Campus: Peterborough balajisubramanian@trentu.ca SC 322 15063375166

More information

Jim Lambers MAT 460/560 Fall Semester Practice Final Exam

Jim Lambers MAT 460/560 Fall Semester Practice Final Exam Jim Lambers MAT 460/560 Fall Semester 2009-10 Practice Final Exam 1. Let f(x) = sin 2x + cos 2x. (a) Write down the 2nd Taylor polynomial P 2 (x) of f(x) centered around x 0 = 0. (b) Write down the corresponding

More information

MA 580; Numerical Analysis I

MA 580; Numerical Analysis I MA 580; Numerical Analysis I C. T. Kelley NC State University tim kelley@ncsu.edu Version of October 23, 2016 NCSU, Fall 2016 c C. T. Kelley, I. C. F. Ipsen, 2016 MA 580, Fall 2016 1 / 43 Contents 1 Introduction

More information

ELECTROMAGNETIC THEORY

ELECTROMAGNETIC THEORY Phys 311 Fall 2014 ELECTROMAGNETIC THEORY Phys 311 Fall 2014 Instructor: Office: Professor David Collins WS 228B Phone: 248-1787 email: Office Hours: dacollin@coloradomesa.edu MT 9:00 9:50am, MWF 2:00

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

Honors Algebra II / Trigonometry

Honors Algebra II / Trigonometry Honors Algebra II / Trigonometry 2013-2014 Instructor: Busselmaier Room: 158 Academic Support Location: Room 158 or Office 152 E-mail: cbusselmaier@regisjesuit.com (email is the best way to get in touch

More information

Methods of Mathematics

Methods of Mathematics Methods of Mathematics Kenneth A. Ribet UC Berkeley Math 10B April 19, 2016 There is a new version of the online textbook file Matrix_Algebra.pdf. The next breakfast will be two days from today, April

More information

Lecture 5. September 4, 2018 Math/CS 471: Introduction to Scientific Computing University of New Mexico

Lecture 5. September 4, 2018 Math/CS 471: Introduction to Scientific Computing University of New Mexico Lecture 5 September 4, 2018 Math/CS 471: Introduction to Scientific Computing University of New Mexico 1 Review: Office hours at regularly scheduled times this week Tuesday: 9:30am-11am Wed: 2:30pm-4:00pm

More information

Queens College, CUNY, Department of Computer Science Numerical Methods CSCI 361 / 761 Spring 2018 Instructor: Dr. Sateesh Mane.

Queens College, CUNY, Department of Computer Science Numerical Methods CSCI 361 / 761 Spring 2018 Instructor: Dr. Sateesh Mane. Queens College, CUNY, Department of Computer Science Numerical Methods CSCI 361 / 761 Spring 2018 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 2018 3 Lecture 3 3.1 General remarks March 4, 2018 This

More information

Ch. 2: Lec. 1. Basics: Outline. Importance. Usages. Key problems. Three ways of looking... Colbert on Equations. References. Ch. 2: Lec. 1.

Ch. 2: Lec. 1. Basics: Outline. Importance. Usages. Key problems. Three ways of looking... Colbert on Equations. References. Ch. 2: Lec. 1. Basics: Chapter 2: Lecture 1 Linear Algebra, Course 124C, Spring, 2009 Prof. Peter Dodds Department of Mathematics & Statistics University of Vermont Instructor: Prof. Peter Dodds Lecture room and meeting

More information

Two hours. To be provided by Examinations Office: Mathematical Formula Tables. THE UNIVERSITY OF MANCHESTER. 29 May :45 11:45

Two hours. To be provided by Examinations Office: Mathematical Formula Tables. THE UNIVERSITY OF MANCHESTER. 29 May :45 11:45 Two hours MATH20602 To be provided by Examinations Office: Mathematical Formula Tables. THE UNIVERSITY OF MANCHESTER NUMERICAL ANALYSIS 1 29 May 2015 9:45 11:45 Answer THREE of the FOUR questions. If more

More information

x x2 2 + x3 3 x4 3. Use the divided-difference method to find a polynomial of least degree that fits the values shown: (b)

x x2 2 + x3 3 x4 3. Use the divided-difference method to find a polynomial of least degree that fits the values shown: (b) Numerical Methods - PROBLEMS. The Taylor series, about the origin, for log( + x) is x x2 2 + x3 3 x4 4 + Find an upper bound on the magnitude of the truncation error on the interval x.5 when log( + x)

More information

Lecture 1/25 Chapter 2

Lecture 1/25 Chapter 2 Lecture 1/25 Chapter 2 Linear Algebra MATH 124, Fall, 2010 Prof. Peter Dodds Department of Mathematics & Statistics Center for Complex Systems Vermont Advanced Computing Center University of Vermont Licensed

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

Class Notes 0: Class Information. MAE 82 Engineering Mathematics

Class Notes 0: Class Information. MAE 82 Engineering Mathematics Class Notes 0: Class Information MAE 82 Engineering Mathematics Course Info Course Summary: Methods of solving ordinary differential equations in engineering. Review of matrix algebra. Solutions of systems

More information

Midterm Review. Igor Yanovsky (Math 151A TA)

Midterm Review. Igor Yanovsky (Math 151A TA) Midterm Review Igor Yanovsky (Math 5A TA) Root-Finding Methods Rootfinding methods are designed to find a zero of a function f, that is, to find a value of x such that f(x) =0 Bisection Method To apply

More information

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS DEVELOPMENTAL MATHEMATICS DSPM Credit Hours: 0 (credit is assigned to the required modules)

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS DEVELOPMENTAL MATHEMATICS DSPM Credit Hours: 0 (credit is assigned to the required modules) PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS DEVELOPMENTAL MATHEMATICS DSPM 0890 Class Hours: 2 Credit Hours: 0 (credit is assigned to the required modules) Laboratory Hours: 2 Revised: Summer 2010

More information

Numerical techniques to solve equations

Numerical techniques to solve equations Programming for Applications in Geomatics, Physical Geography and Ecosystem Science (NGEN13) Numerical techniques to solve equations vaughan.phillips@nateko.lu.se Vaughan Phillips Associate Professor,

More information

Education Council Proposal: Re-articulation and Prerequisite changes for Advanced Algebraic Mathematics (MATH 045)

Education Council Proposal: Re-articulation and Prerequisite changes for Advanced Algebraic Mathematics (MATH 045) Education Council Proposal: Re-articulation and Prerequisite changes for Advanced Algebraic Mathematics (MATH 045) Rationale: As mandated by the Provincial Articulation body, all adult upgrading courses

More information

Lösning: Tenta Numerical Analysis för D, L. FMN011,

Lösning: Tenta Numerical Analysis för D, L. FMN011, Lösning: Tenta Numerical Analysis för D, L. FMN011, 090527 This exam starts at 8:00 and ends at 12:00. To get a passing grade for the course you need 35 points in this exam and an accumulated total (this

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

CS 221 Lecture 9. Tuesday, 1 November 2011

CS 221 Lecture 9. Tuesday, 1 November 2011 CS 221 Lecture 9 Tuesday, 1 November 2011 Some slides in this lecture are from the publisher s slides for Engineering Computation: An Introduction Using MATLAB and Excel 2009 McGraw-Hill Today s Agenda

More information

Homework and Computer Problems for Math*2130 (W17).

Homework and Computer Problems for Math*2130 (W17). Homework and Computer Problems for Math*2130 (W17). MARCUS R. GARVIE 1 December 21, 2016 1 Department of Mathematics & Statistics, University of Guelph NOTES: These questions are a bare minimum. You should

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

MATH 135 PRE-CALCULUS: ELEMENTARY FUNCTIONS COURSE SYLLABUS FALL 2012

MATH 135 PRE-CALCULUS: ELEMENTARY FUNCTIONS COURSE SYLLABUS FALL 2012 Instructor: Course: Prereq: Description: Learning Outcomes: Gigi Drent Office: Faculty One, Room 115 Office Hours: MW 10:00 10:50 or by appointment Phone: 808-245-8289 Email: gdrent@hawaii.edu (best way

More information

PHYS100 General Physics - Mechanics and Thermodynamics Fall

PHYS100 General Physics - Mechanics and Thermodynamics Fall PHYS100 General Physics - Mechanics and Thermodynamics Fall 2014-2015 Assoc. Prof. Dr. O. Özgür Eğilmez Civil Engineering Department Room: A-523 Email: ozgur.egilmez@ieu.edu.tr Phone: (232) 488-8214 Textbook:

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

Math 1190/01 Calculus I Fall 2007

Math 1190/01 Calculus I Fall 2007 Math 1190/01 Calculus I Fall 2007 Instructor: Dr. Sean Ellermeyer, SC 24, (770) 423-6129 (Math dept: (770) 423-6327), email: sellerme@kennesaw.edu, Web Site: http://math.kennesaw.edu/~sellerme. Time and

More information

Mon Jan Improved acceleration models: linear and quadratic drag forces. Announcements: Warm-up Exercise:

Mon Jan Improved acceleration models: linear and quadratic drag forces. Announcements: Warm-up Exercise: Math 2250-004 Week 4 notes We will not necessarily finish the material from a given day's notes on that day. We may also add or subtract some material as the week progresses, but these notes represent

More information

Two years of high school algebra and ACT math score of at least 19; or DSPM0850 or equivalent math placement score.

Two years of high school algebra and ACT math score of at least 19; or DSPM0850 or equivalent math placement score. PELLISSIPPI STATE TECHNICAL COMMUNITY COLLEGE MASTER SYLLABUS INTERMEDIATE AND COLLEGE ALGEBRA DSPM0850 / MATH 1130 Class Hours: 3.0 Credit Hours: 6.0 Laboratory Hours: 0.0 Revised: Fall 05 Catalog Course

More information

FALL 2018 MATH 4211/6211 Optimization Homework 4

FALL 2018 MATH 4211/6211 Optimization Homework 4 FALL 2018 MATH 4211/6211 Optimization Homework 4 This homework assignment is open to textbook, reference books, slides, and online resources, excluding any direct solution to the problem (such as solution

More information

MATH20602 Numerical Analysis 1

MATH20602 Numerical Analysis 1 M\cr NA Manchester Numerical Analysis MATH20602 Numerical Analysis 1 Martin Lotz School of Mathematics The University of Manchester Manchester, February 1, 2016 Outline General Course Information Introduction

More information

Math 70 and 95 Master Syllabus Beginning and Intermediate Algebra, 5th ed., Miller, O Neill, Hyde with ALEKS.

Math 70 and 95 Master Syllabus Beginning and Intermediate Algebra, 5th ed., Miller, O Neill, Hyde with ALEKS. Math 70 and 95 Master Syllabus 2017-2018 Course Coordinator: Tammy Nezol (tnezol@uoregon.edu) Textbook and ALEKS: Beginning and Intermediate Algebra, 5th ed., Miller, O Neill, Hyde with ALEKS. We have

More information

Chapter 1 Mathematical Preliminaries and Error Analysis

Chapter 1 Mathematical Preliminaries and Error Analysis Numerical Analysis (Math 3313) 2019-2018 Chapter 1 Mathematical Preliminaries and Error Analysis Intended learning outcomes: Upon successful completion of this chapter, a student will be able to (1) list

More information

COURSE OUTLINE MATH 050 INTERMEDIATE ALGEBRA 147 HOURS 6 CREDITS

COURSE OUTLINE MATH 050 INTERMEDIATE ALGEBRA 147 HOURS 6 CREDITS COURSE OUTLINE INTERMEDIATE ALGEBRA 147 HOURS 6 CREDITS PREPARED BY: Annie-Claude Letendre, Instructor DATE: June 28, 2018 APPROVED BY: DATE: APPROVED BY ACADEMIC COUNCIL: RENEWED BY ACADEMIC COUNCIL:

More information

Process Fluid Mechanics

Process Fluid Mechanics Process Fluid Mechanics CENG 2220 Instructor: Francesco Ciucci, Room 2577A (Lift 27-29), Tel: 2358 7187, email: francesco.ciucci@ust.hk. Office Hours: Tuesday 17:00-18:00 or by email appointment Teaching

More information

NUMERICAL ANALYSIS WEEKLY OVERVIEW

NUMERICAL ANALYSIS WEEKLY OVERVIEW NUMERICAL ANALYSIS WEEKLY OVERVIEW M. AUTH 1. Monday 28 August Students are encouraged to download Anaconda Python. Anaconda is a version of Python that comes with some numerical packages (numpy and matplotlib)

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

Simple Iteration, cont d

Simple Iteration, cont d Jim Lambers MAT 772 Fall Semester 2010-11 Lecture 2 Notes These notes correspond to Section 1.2 in the text. Simple Iteration, cont d In general, nonlinear equations cannot be solved in a finite sequence

More information

Wednesday, 10 September 2008

Wednesday, 10 September 2008 MA211 : Calculus, Part 1 Lecture 2: Sets and Functions Dr Niall Madden (Mathematics, NUI Galway) Wednesday, 10 September 2008 MA211 Lecture 2: Sets and Functions 1/33 Outline 1 Short review of sets 2 Sets

More information

Outline. Wednesday, 10 September Schedule. Welcome to MA211. MA211 : Calculus, Part 1 Lecture 2: Sets and Functions

Outline. Wednesday, 10 September Schedule. Welcome to MA211. MA211 : Calculus, Part 1 Lecture 2: Sets and Functions Outline MA211 : Calculus, Part 1 Lecture 2: Sets and Functions Dr Niall Madden (Mathematics, NUI Galway) Wednesday, 10 September 2008 1 Short review of sets 2 The Naturals: N The Integers: Z The Rationals:

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

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

Section Instructors: by now you should be scheduled into one of the following Sections:

Section Instructors: by now you should be scheduled into one of the following Sections: MAT188H1F LINEAR ALGEBRA: Syllabus for Fall 2018 as of October 26, 2018 2018-2019 Calendar Description: This course covers systems of linear equations and Gaussian elimination, applications; vectors in

More information

Emerging Issues in Geographic Information Science (GEP680): Projections, Scale, Accuracy, and Interpolation Lehman College, Spring 2017

Emerging Issues in Geographic Information Science (GEP680): Projections, Scale, Accuracy, and Interpolation Lehman College, Spring 2017 Emerging Issues in Geographic Information Science (GEP680): Projections, Scale, Accuracy, and Interpolation Lehman College, Spring 2017 Instructor: Gary Ostroff, P.E., Adjunct Lecturer E-mail: Gary.Ostroff@lehman.cuny.edu;

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

MATH College Algebra 3:3:1

MATH College Algebra 3:3:1 MATH 1314 College Algebra 3:3:1 South Plains College Arts & Sciences Mathematics Jay Driver Summer I 2010 Instructor: Jay Driver Office: M102 (mathematics building) Telephone: (806) 716-2780 Email: jdriver@southplainscollege.edu

More information

1 Solutions to selected problems

1 Solutions to selected problems Solutions to selected problems Section., #a,c,d. a. p x = n for i = n : 0 p x = xp x + i end b. z = x, y = x for i = : n y = y + x i z = zy end c. y = (t x ), p t = a for i = : n y = y(t x i ) p t = p

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

Homework 2. Matthew Jin. April 10, 2014

Homework 2. Matthew Jin. April 10, 2014 Homework Matthew Jin April 10, 014 1a) The relative error is given by ŷ y y, where ŷ represents the observed output value, and y represents the theoretical output value. In this case, the observed output

More information

Course: Math 111 Pre-Calculus Summer 2016

Course: Math 111 Pre-Calculus Summer 2016 Course: Math 111 Pre-Calculus Summer 2016 Text: Instructor: Office Hours: Email: Fundamentals of Pre-calculus 2 nd edition, by M. Dugopolski, Pearson Publishing (Custom Edition for URI or Standard Edition)

More information

Math Partial Differential Equations

Math Partial Differential Equations Math 531 - Partial Differential Equations to Partial Differential Equations Joseph M. Mahaffy, jmahaffy@sdsu.edu Department of Mathematics and Statistics Dynamical Systems Group Computational Sciences

More information

Math Numerical Analysis Mid-Term Test Solutions

Math Numerical Analysis Mid-Term Test Solutions Math 400 - Numerical Analysis Mid-Term Test Solutions. Short Answers (a) A sufficient and necessary condition for the bisection method to find a root of f(x) on the interval [a,b] is f(a)f(b) < 0 or f(a)

More information

Course Content (visit for details)

Course Content (visit   for details) Instructor: Dr. Alexander Krantsberg Email: akrantsberg@nvcc.edu Phone: 703-845-6548 Office: Bisdorf, Room AA-354 Class Time: Tuesdays, Thursdays 4:30 PM - 7:15 PM. Classroom: Bisdorf, AA 355 Office hours:

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

Scientific Computing. Roots of Equations

Scientific Computing. Roots of Equations ECE257 Numerical Methods and Scientific Computing Roots of Equations Today s s class: Roots of Equations Polynomials Polynomials A polynomial is of the form: ( x) = a 0 + a 1 x + a 2 x 2 +L+ a n x n f

More information

Math/EECS 1028M: Discrete Mathematics for Engineers Winter Suprakash Datta

Math/EECS 1028M: Discrete Mathematics for Engineers Winter Suprakash Datta Math/EECS 1028M: Discrete Mathematics for Engineers Winter 2017 Suprakash Datta datta@cse.yorku.ca Office: CSEB 3043 Phone: 416-736-2100 ext 77875 Course page: http://www.eecs.yorku.ca/course/1028 Administrivia

More information

Course Name: Engineering Mathematics (2)

Course Name: Engineering Mathematics (2) The University of Jordan Accreditation & Quality Assurance Center COURSE Syllabus Course Name: Engineering Mathematics (2) 1 Course title Engineering Mathematics (2) 2 Course number (0331302) Credit hours

More information

Course Information Course Overview Study Skills Background Material. Introduction. CS 205A: Mathematical Methods for Robotics, Vision, and Graphics

Course Information Course Overview Study Skills Background Material. Introduction. CS 205A: Mathematical Methods for Robotics, Vision, and Graphics Introduction CS 205A: Mathematical Methods for Robotics, Vision, and Graphics Doug James CS 205A: Mathematical Methods Introduction 1 / 16 Instructor Prof. Doug James Office: Gates 363 Telephone: (650)

More information

Integration, differentiation, and root finding. Phys 420/580 Lecture 7

Integration, differentiation, and root finding. Phys 420/580 Lecture 7 Integration, differentiation, and root finding Phys 420/580 Lecture 7 Numerical integration Compute an approximation to the definite integral I = b Find area under the curve in the interval Trapezoid Rule:

More information

MATH COURSE TITLE: College Algebra

MATH COURSE TITLE: College Algebra MATH 1314 INSTRUCTOR: Alan Roemer Email Address: droemer@wc.edu; aroemer@weatherfordisd.com Cell phone: 817-988-7987 Office Hours: Mornings - Everyday: 7:40 8:10 Megalunch - Friday B Block 11:11 11:42

More information

AE 200 Engineering Analysis and Control of Aerospace Systems

AE 200 Engineering Analysis and Control of Aerospace Systems Instructor Info Credit Class Days / Time Office Location: ENG 272C Office Hours: Monday 4:00pm 6:30pm Email: kamran.turkoglu@sjsu.edu 3 units Tuesday, 6:00pm 8:45pm Classroom CL 222 Prerequisites TA: Contact

More information

MA/OR/ST 706: Nonlinear Programming Midterm Exam Instructor: Dr. Kartik Sivaramakrishnan INSTRUCTIONS

MA/OR/ST 706: Nonlinear Programming Midterm Exam Instructor: Dr. Kartik Sivaramakrishnan INSTRUCTIONS MA/OR/ST 706: Nonlinear Programming Midterm Exam Instructor: Dr. Kartik Sivaramakrishnan INSTRUCTIONS 1. Please write your name and student number clearly on the front page of the exam. 2. The exam is

More information

MATH 3795 Lecture 13. Numerical Solution of Nonlinear Equations in R N.

MATH 3795 Lecture 13. Numerical Solution of Nonlinear Equations in R N. MATH 3795 Lecture 13. Numerical Solution of Nonlinear Equations in R N. Dmitriy Leykekhman Fall 2008 Goals Learn about different methods for the solution of F (x) = 0, their advantages and disadvantages.

More information

University of Wisconsin-Eau Claire CHEM 103: General Chemistry- Syllabus Spring 2014

University of Wisconsin-Eau Claire CHEM 103: General Chemistry- Syllabus Spring 2014 University of Wisconsin-Eau Claire CHEM 103: General Chemistry- Syllabus Spring 2014 Lecture (Section 003) T/R, 2:00 PM 3:15 PM, P 007 Instructor Lab (Sections 331/333) Lab (Sections 332/334) Dr. Sudeep

More information

9.6 Predictor-Corrector Methods

9.6 Predictor-Corrector Methods SEC. 9.6 PREDICTOR-CORRECTOR METHODS 505 Adams-Bashforth-Moulton Method 9.6 Predictor-Corrector Methods The methods of Euler, Heun, Taylor, and Runge-Kutta are called single-step methods because they use

More information

Chapter 3: Root Finding. September 26, 2005

Chapter 3: Root Finding. September 26, 2005 Chapter 3: Root Finding September 26, 2005 Outline 1 Root Finding 2 3.1 The Bisection Method 3 3.2 Newton s Method: Derivation and Examples 4 3.3 How To Stop Newton s Method 5 3.4 Application: Division

More information

Math 113 (Calculus 2) Exam 4

Math 113 (Calculus 2) Exam 4 Math 3 (Calculus ) Exam 4 November 0 November, 009 Sections 0, 3 7 Name Student ID Section Instructor In some cases a series may be seen to converge or diverge for more than one reason. For such problems

More information

Letter Grades A+! % B+! % C+!64 67 % D! % A! % B! % C! % F! 0 49 % A! % B! % C!55 59 % Did not write

Letter Grades A+! % B+! % C+!64 67 % D! % A! % B! % C! % F! 0 49 % A! % B! % C!55 59 % Did not write e Chemistry 1120 (Section 003) General Chemistry 1 Fall, 2011 M 17:30 19:30 (lecture, A266) W 17:30 18:30 (lecture, A320) W 18:30 21:30 (lab, A271) Instructor!! Dr. Nathan Jones Office!!! A264f Email!!!

More information

Essex County College Division of Mathematics MTH-122 Assessments. Honor Code

Essex County College Division of Mathematics MTH-122 Assessments. Honor Code Essex County College Division of Mathematics MTH-22 Assessments Last Name: First Name: Phone or email: Honor Code The Honor Code is a statement on academic integrity, it articulates reasonable expectations

More information

NUMERICAL METHODS. x n+1 = 2x n x 2 n. In particular: which of them gives faster convergence, and why? [Work to four decimal places.

NUMERICAL METHODS. x n+1 = 2x n x 2 n. In particular: which of them gives faster convergence, and why? [Work to four decimal places. NUMERICAL METHODS 1. Rearranging the equation x 3 =.5 gives the iterative formula x n+1 = g(x n ), where g(x) = (2x 2 ) 1. (a) Starting with x = 1, compute the x n up to n = 6, and describe what is happening.

More information

NHTI Concord s Community College 31 College Drive Concord, NH

NHTI Concord s Community College 31 College Drive Concord, NH NHTI Concord s Community College 31 College Drive Concord, NH 03301-7412 603) 271-6484; FAX 603-271-7734 COURSE OUTLINE & INFORMATION SHEET PROGRAM COURSE NO. COURSE TITLE CREDIT HOURS CRN# Math (NHTI)

More information

Mathematics, Advanced Level MATH 080 Adult Education/Adult Upgrading Program. Course Outline

Mathematics, Advanced Level MATH 080 Adult Education/Adult Upgrading Program. Course Outline Mathematics, Advanced Level MATH 080 Adult Education/Adult Upgrading Program Course Outline COURSE IMPLEMENTATION DATE: Pre 1998 OUTLINE EFFECTIVE DATE: May 2017 COURSE OUTLINE REVIEW DATE: January 2022

More information

STATISTICAL AND THERMAL PHYSICS

STATISTICAL AND THERMAL PHYSICS Phys 362 Spring 2015 STATISTICAL AND THERMAL PHYSICS Phys 362 Spring 2015 Instructor: Office: Professor David Collins WS 228B Phone: 248-1787 email: Office Hours: dacollin@coloradomesa.edu M 9 10 am, 11

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