Skip to content

Commit

Permalink
week 9: root finders
Browse files Browse the repository at this point in the history
  • Loading branch information
orbeckst committed Mar 21, 2024
1 parent 1b75664 commit 85c2be4
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions _announcements/week-9.md
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).

0 comments on commit 85c2be4

Please sign in to comment.