Browse Course Material

Course info.

  • Prof. Laurent Demanet

Departments

  • Mathematics

As Taught In

  • Applied Mathematics
  • Computation

Learning Resource Types

Introduction to numerical analysis, assignments.

facebook

You are leaving MIT OpenCourseWare

Math 128A - Numerical Analysis

Uc berkeley, fall 2021, course website.

  • The course is hosted on bCourses __________________________________________________________________________________________

Lecture Videos

  • Pre-recorded Lecture Videos __________________________________________________________________________________________

Lecture Slides

  • Chapter 1 - Mathematical Preliminaries and Error Analysis ( PDF , HTML )
  • Chapter 2 - Solutions of Equations in One Variable ( PDF , HTML )
  • Chapter 3 - Interpolation and Polynomial Approximation ( PDF , HTML )
  • Chapter 4 - Numerical Differentiation and Integration ( PDF , HTML )
  • Chapter 5 - Initial-Value Problems for Ordinary Differential Equations ( PDF , HTML )
  • Chapter 6 - Direct Methods for Solving Linear Systems ( PDF , HTML ) __________________________________________________________________________________________

MATLAB Codes

All in-class MATLAB codes

Organized by textbook sections:

  • Section 1.2: num2bin.m
  • Section 2.1: bisection.m , bisection_table.m
  • Section 2.2: fixedpoint.m , fixedpoint_table.m , fixedpoint_plot.m
  • Section 2.3: newton.m , newton_table.m , newton_plot.m
  • Section 2.5: steffensen.m , steffensen_table.m
  • Section 2.6: horner.m , muller.m , muller_table.m , muller_plot.m
  • Section 3.3: divideddifference.m
  • Section 3.5: ncspline.m , ccspline.m , splineeval.m , diffsplineeval.m , splinedemo.m
  • Section 4.1: diffdemo.m
  • Section 4.2: richdemo.m
  • Section 4.5: romberg.m
  • Section 4.7: gaussquad.m
  • Section 4.8: simpsondouble.m , gaussdouble_demo.m
  • Section 4.9: laguerrequad.m
  • Section 5.4: rk4.m
  • Section 5.11: rk4stability.m
  • Programming Assignment 3: pendplot.m
  • Section 6.2: gausselim.m
  • Section 6.5: lu_demo.m , mkM.m __________________________________________________________________________________________

numerical analysis homework

Department of Mathematics

Math 448/548: numerical analysis.

  • Job Opportunities

Numerical Analysis Resources

The principal reason we think we can do without a text this semester is that there is such an abundance of resources available free, or at low cost. Here is a list of a few of them. The appearance of a site on this list should not be taken as an endorsement of the material. The sheer volume of material available makes it difficult to vet everything as thoroughly as I would like. If you find mistakes or other infelicities, please let the instructor know.

Free Internet Resources

  • Numerical Computing with Matlab , by Cleve Moler. You will need to register to download this text.
  • Transforming Numerical Methods Education for the STEM Undergraduate has text materials as well as youtube lectures.
  • A site at Cal Fullerton has a variety of resources, but what seemed most interesting was some animations of certain numerical methods.
  • I question the strategy of covering elliptic PDEs before discussing methods for linear algebra, but a physicist at Oxford has produced a text that does so . It uses Maple, and appears to have useful information.
  • MIT has a large number of online course materials, including some for Numerical Analysis for Engineers .
  • MyMath has online software
  • Octave is free Matlab lookalike software.

If you feel a need to have an actual book to look at, here are some. Since these are not required, if you choose to buy one you may pick any edition you like.

  • Scientific Computing, An Introductory Survey, by Michael Heath, is a relatively new book that covers topics in a good order. I have not used this book, but I like its table of contents.
  • Elementary Numerical Analysis: An Algorithmic Approach , Conte and DeBoor, is an old book that I have always liked. The order of the topics is not what I prefer, but it is written well at a good undergraduate level. I see that you can buy used copies for as little as $0.30. At that price, you cannot afford not to have this on your shelf.
  • Numerical Analysis, by Richard Burden and J. Douglas Faires, is a text that has been used very broadly. It should be possible to pick up a cheap older edition.

Numerical Analysis

David gleich, purdue university, spring 2021, course number cs-51400, math-51400, online due to covid-19 pandemic, social distance, wear a mask., zoom, tuesday and thursday, 10:30-11:45, numerical analysis, announcements.

Numerical analysis is the study of computer-based numerical methods for working with common mathematical and scientific operations. The emphasis of the course is on numerical algorithms, represented as computer codes, their mathematical abstractions, represented as rigorously as possible, and the resulting approximation errors. This is a graduate class on these methods that would serve a fondation for students in computer science, mathematics, computational science and engineering, statistics, engineering, and releated fields that will use numerical algorithms and approximations in their work.

The topics we'll cover include:

  • Computer-friendly representations of numbers including floating-point arithmetic
  • Approximations to functions
  • Numerical methods to differentiate and integrate functions
  • Methods to solve non-linear equations (CS 51500 focuses on linear equations)
  • Numerical solutions to ODEs

An undergraduate version of this course is available as CS314, and for students from disciplines other than CS and Mathematics, this might be more suitable depending on your previous knowledge of this material.

Books and reading materials

The following textbook is officially required. But you won't need it for any of the homework problems.

Walter Gautschi, Numerical Analysis 2nd Edition . Birkhauser/Springer, 2012 http://dx.doi.org/10.1007/978-0-8176-8259-0

See the readings page for additional references as well as a set of recommended readings associated with each lecture. These will be updated after the lecture and not before. There is a rough reading guide in the syllabus.

This is a lecture class. You (the student) will be expected to attend lectures and there will be regular homeworks. These will include writing computer codes in the Matlab or Julia languages. There will also be a midterm and a final. More detailed requirements are explained in the syllabus including the course policies.

  • Course Home
  • Readings & Lectures
  • Brightspace

Assignments

  • Intro video survey (html) (tex) (pdf)
  • Homework 1 (html) (tex) (pdf)
  • Homework 2 (html) (tex) (pdf)
  • Homework 3 (html) (tex) (pdf)
  • Homework 4 (html) (tex) (pdf)
  • Homework 5 (html) (tex) (pdf)
  • preamble.tex

Copyright © David F. Gleich 2021

This site was created with Poole static site generator

  • Homework Assignments and due dates Homework Problem Set Homework Problem Set 1 Solutions Homework Problem Set 2 Solutions Homework Problem Set 3 Solutions Homework Problem Set 4 Solutions Homework Problem Set 5 Solutions Homework Problem Set 6 Solutions
  • Project Ideas and Information
  • Old Math 611 Final Exams Final Exam 1990 Final Exam 1996 Final Exam 1997 Final Exam 2000
Bisection    Bisection computer code in C Newton's Method    Newton's Method computer code in C Fixed Point Iteration Computer Code in C Secant Method Computer Code in C
Aitken & Steffenson Method    Aitken's and Steffensen's Methods Computer code in C Romberg Method    Romberg Method Computer code in C
Lagrange Interpolation    Lagrange interpolation Computer code in C
Right Rectangles Comparisons of Trapezoid, Simpson and Midpoint Methods Computer code in C
Taylor Series Comparison of One-Step ODE solvers Computer code in C Adam-Bashforth    Adams-Bashforth/Moulton Predictor-Corrector Computer code in C
   Gaussian Elimination Computer code in C

IMAGES

  1. Solutions for Homework 1

    numerical analysis homework

  2. Homework for module 2. Not mandatory rn

    numerical analysis homework

  3. Homework 8 Solutions for Numerical Analysis

    numerical analysis homework

  4. SOLUTION: Numerical analysis bisection method related problems with

    numerical analysis homework

  5. [PDF] Math 2400

    numerical analysis homework

  6. Numerical Analysis

    numerical analysis homework

VIDEO

  1. Numerical Analysis

  2. LECTURE-09 || NUMERICAL ANALYSIS || 4TH SEMESTER || BSC ODISHA ||

  3. LECTURE-13 || NUMERICAL ANALYSIS || 4TH SEMESTER || BSC ODISHA ||

  4. B.Sc. III Year (Mathematics) Numerical Analysis

  5. 23- Chapter 4 Summary ( Estimation )

  6. Numerical methods and analysis 108

COMMENTS

  1. Numerical Analysis

    Now, with expert-verified solutions from Numerical Analysis 10th Edition, you'll learn how to solve your toughest homework problems. Our resource for Numerical Analysis includes answers to chapter exercises, as well as detailed information to walk you through the process step by step. With Expert Solutions for thousands of practice problems ...

  2. Assignments

    Assignment 2 (PDF) Assignment 3 (PDF) Assignment 4 (PDF) Assignment 5 (PDF) Assignment 6 (PDF ) Assignment 7 (PDF) Assignment 8 (PDF) This section provides the homework assignments for the course.

  3. PDF Numerical Analysis (Math 128a)

    • Numerical Analysis by Burden, Faires, and Burden (BFB): This is the typical textbook used at Berkeley and many other institutions. It is very large and covers more than ... While it is true that many homework questions will start with "compute" instead of "prove", a healthy attitude towards proofs and derivations

  4. Math 128A

    Math 128A - Numerical Analysis UC Berkeley, Fall 2021. Course Website. ... Chapter 4 - Numerical Differentiation and Integration (PDF, HTML) Chapter 5 - Initial-Value Problems for Ordinary Differential Equations (PDF, HTML)

  5. PDF MT414: Numerical Analysis

    (b) The rst formula gives the answer 0:00658, while the second formula gives the answer 0:0100. In this case, the second formula is better. The rst one involved subtracting x

  6. PDF Introduction to Numerical Analysis

    Discussion Board: Homework/content questions should be posted on our class discussion board onTBD by students. Personal Matters: Students may e-mail the instructor viaCanvas Inbox or e-mail using their o˚cial UF e-mail address. Introduction to Numerical Analysis MAD 4401 Fall 2020 Instructor g Dr. Tracy Stepien @ tstepien@ufl.edu T (352) 448-3894

  7. PDF Math128B: Numerical Analysis Homework #1, Due Jan. 28, 2018

    Prof. Ming Gu, 861 Evans, tel: 2-3145 O ce Hours: MWF 3:00-4:00PM Email: [email protected] http://www.math.berkeley.edu/˘mgu/MA128BSpring2018

  8. Numerical Analysis 10th Edition Textbook Solutions

    Understanding Numerical Analysis 10th Edition homework has never been easier than with Chegg Study. ... Unlike static PDF Numerical Analysis 10th Edition solution manuals or printed answer keys, our experts show you how to solve each problem step-by-step. No need to wait for office hours or assignments to be graded to find out where you took a ...

  9. PDF Introduction to Numerical Analysis

    From the above equation for F we have: net. dv k. g v. 2. dt m. where g = acceleration due to gravity, k = frictional damping constant, and m = mass of falling body. The numerical approach will take the entire time interval t during which the motion is studied and divide it into small (usually very small) intervals )t.

  10. CS 4220/Math 4260: Numerical Analysis: Linear and Nonlinear Problems

    CS 4220/Math 4260: Numerical Analysis: Linear and Nonlinear Problems Cornell University, Spring 2021. Instruction mode: online, synchronous lectures. ... The format is just like the homework, except that you have to work on the problems on your own. Final exam (32%). There will be a take-home final, released on May 18 and due May 25. The format ...

  11. Numerical Analysis 10th Edition Textbook Solutions

    Textbook solutions for Numerical Analysis 10th Edition Richard L. Burden and others in this series. View step-by-step homework solutions for your homework. Ask our subject experts for help answering any of your homework questions!

  12. PDF Math128A: Numerical Analysis Homework #13, Do not hand in

    Prof. Ming Gu, 861 Evans, tel: 2-3145 O ce Hours: TuWTh 1:30-3:00PM Email: [email protected] http://www.math.berkeley.edu/˘mgu/MA128AFall2017

  13. Numerical Analysis

    Numerical analysis and numerical methods is an extremely large area that forms the basis of what is now called computational science and engineering and scientific computing. When we reach the end of the class, you should be able to: Understand how computers represent numbers and how this impact mathematical computations on computers.

  14. Math 448/548: Numerical Analysis

    Numerical Analysis Resources. ... You will need to check this web site often to get homework assignments and other news of the course. Department of Mathematics, PO Box 643113, Neill Hall 103, Washington State University, Pullman WA 99164-3113, 509-335-3926, Contact Us.

  15. Numerical Analysis 2nd Edition Textbook Solutions

    Understanding Numerical Analysis 2nd Edition homework has never been easier than with Chegg Study. Why is Chegg Study better than downloaded Numerical Analysis 2nd Edition PDF solution manuals? It's easier to figure out tough problems faster using Chegg Study. Unlike static PDF Numerical Analysis 2nd Edition solution manuals or printed answer ...

  16. Numerical Analysis Homework

    Homework 1: Due Friday, September 8. 1. Burden, Faires & Burden, Section 1.1: #10. 2. Burden, Faires & Burden, Section 1.2: #2c, 4a, 5a (i,iii, iv (iii)) 3. Find two distinct 3-decimal digit floats in [1,100], say a and b, with a less than b, so that fl ( fl (a+b)/2 ) is not in the interval [a,b]. Now with these values of a and b, find fl ( a ...

  17. PDF Numerical analysis: Homework 2

    Numerical analysis: Homework 2 Instructor: Anil Damle Due: February 19, 2024 Policies You may discuss the homework problems freely with other students, but please refrain from looking at their code or writeups (or sharing your own). Ultimately, you must implement your own code and write up your own solution to be turned in.

  18. Numerical Analysis

    Numerical analysis Announcements 2021-04-20 Please complete Homework 5 and submit on Gradescope by 2021-04-30 at 5am to have it graded before the final. The last day it will be considered for full points is 2021-05-03 (5am). 2021-03-23 Please complete Homework 4 and submit on Gradescope by 2021-04-05 at 5am 2021-03-10

  19. An Introduction to Numerical Analysis Solutions Manual

    Understanding An Introduction to Numerical Analysis homework has never been easier than with Chegg Study. ... Unlike static PDF An Introduction to Numerical Analysis solution manuals or printed answer keys, our experts show you how to solve each problem step-by-step. No need to wait for office hours or assignments to be graded to find out where ...

  20. Numerical Analysis

    Numerical Analysis. Syllabus. Homework Assignments and due dates Homework Problem Set Homework Problem Set 1 Solutions Homework Problem Set 2 Solutions Homework Problem Set 3 Solutions Homework Problem Set 4 Solutions Homework Problem Set 5 Solutions Homework Problem Set 6 Solutions. Course Notes Notes1 Notes2 Notes3 Notes4 Notes5 Notes6.

  21. Numerical Analysis 3rd Edition Textbook Solutions

    Understanding Numerical Analysis 3rd Edition homework has never been easier than with Chegg Study. ... Unlike static PDF Numerical Analysis 3rd Edition solution manuals or printed answer keys, our experts show you how to solve each problem step-by-step. No need to wait for office hours or assignments to be graded to find out where you took a ...

  22. Solved Numerical AnalysisNonlinear EquationsHomework 1Due

    Numerical Analysis. Nonlinear Equations. Homework 1. Due date 2 1 Mar 2 0 2 4. 6 6 0 5 MATH-4. March 1 5, ...