This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
gibson:teaching:fall-2016:math753:hw2 [2016/09/19 12:21] gibson |
gibson:teaching:fall-2016:math753:hw2 [2016/09/20 09:34] (current) gibson |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Math 753/853 HW2 ====== | ====== Math 753/853 HW2 ====== | ||
+ | Here is the {{:gibson:teaching:fall-2016:math753:math753-hw2.ipynb|Julia Notebook for HW2}}. Please download the notebook, fill it in, save your completed work as a notebook file with name ''math753-hw2-lastname.ipynb'', and submit it either through Canvas or via email. | ||
+ | For your convenience reading online, the questions for HW2 are listed below. | ||
------- | ------- | ||
**Problem 1.** Write a Julia function ''bisectsearch'' that take a function $f(x)$ and an interval $a,b$ such that $f(a) f(b) < 0$, returns a root $r$ of $f$ within that interval. Find the root to as many digits accuracy as possible. | **Problem 1.** Write a Julia function ''bisectsearch'' that take a function $f(x)$ and an interval $a,b$ such that $f(a) f(b) < 0$, returns a root $r$ of $f$ within that interval. Find the root to as many digits accuracy as possible. | ||
Line 65: | Line 67: | ||
------ | ------ | ||
- | ** Bonus problem 7.** Consider $f(x) = (1-3/(4x))^1/3$. What is the root $r$ of this function? What happenes when you apply your Newton-method algorithm to this function with a starting guess $x_0 = 1$? Why? | + | ** Bonus problem 7.** Consider $f(x) = (1-3/(4x))^{1/3}$. What is the root $r$ of this function? What happens when you apply your Newton-method algorithm to this function with a starting guess $x_0 = 1$? Why? |