Salick Academy

Try each one on paper first, then check a single step. That is worth far more than reading a finished solution.

Example 1 — locating a root and bisecting

Show that f(x)=x3x1f(x) = x^3 - x - 1 has a root between 1 and 2, and use two bisections to narrow it.

Example 2 — Newton–Raphson

Apply the Newton–Raphson method to f(x)=x3x1f(x) = x^3 - x - 1 with x0=1.5x_0 = 1.5, giving x2x_2.

Example 3 — why one rearrangement works and another does not

The equation x3x1=0x^3 - x - 1 = 0 can be rearranged as x=(x+1)1/3x = (x+1)^{1/3} or as x=x31x = x^3 - 1. Explain why only the first converges.