generated from Py4Phy/just-the-class
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
title: Week 9 Announcement | ||
week: 9 | ||
date: 2024-03-18 | ||
--- | ||
|
||
A common problem is to find the roots of an equation. We will develop | ||
two algorithms to find roots numerically. The *bisection* algorithm is | ||
a simple and robust approach that exemplifies how to go from imagining | ||
a solution ("how would I solve this problem?") to an actual | ||
implementation. We then will develop a much faster but less robust | ||
algorithm known as *Newton-Raphson*. In both cases we will initially | ||
restrict ourselves to 1D problems but we will later extend | ||
Newton-Raphson to arbitrary dimensions (once we learned how to solve | ||
matrix problems). |