Welcome to Numerical Solutions!

In your math journey so far, you have spent a lot of time solving equations like \(2x + 4 = 10\) or \(x^2 - 5x + 6 = 0\). These are great because we have exact formulas to find the answers. But did you know that for many complex equations (like \(x^3 + x - 1 = 0\)), there is no simple formula to find the exact answer?

Don't worry! This is where Numerical Methods come to the rescue. Instead of finding an exact answer, we use clever "guessing" and "refining" techniques to get an answer that is "close enough" for any practical use. Let’s dive in!


1. Locating the Root: The Search for a Sign Change

Before we can find a solution (also called a root), we need to know roughly where it is. A root is simply the value of \(x\) where the function \(f(x)\) equals zero.

The Sign Change Rule

Imagine you are walking along a path (the graph of a function). If at one point you are below sea level (negative value) and a bit later you are above sea level (positive value), you must have crossed sea level (zero) at some point in between!

In math terms: If a continuous function \(f(x)\) changes sign between \(x = a\) and \(x = b\), then there is at least one root between \(a\) and \(b\).

How to do it:

1. Set your equation to equal zero: \(f(x) = 0\).
2. Plug in two different numbers for \(x\).
3. If one result is positive and the other is negative, there is a root between those two numbers.

Example: Show there is a root for \(x^3 + x - 3 = 0\) between \(x = 1\) and \(x = 2\).
Let \(f(x) = x^3 + x - 3\)
\(f(1) = (1)^3 + 1 - 3 = -1\) (Negative)
\(f(2) = (2)^3 + 2 - 3 = 7\) (Positive)
Since there is a sign change, a root exists between 1 and 2!

Quick Review: To find where a root lives, look for where the y-values switch from plus to minus.


2. Graphical Considerations

Sometimes, looking at a graph is the easiest way to "see" where a solution is. You might be asked to find the number of roots by seeing where two graphs cross.

If you have an equation like \(x^3 = 3 - x\), you can split it into two separate functions:
1. \(y = x^3\)
2. \(y = 3 - x\)

The solution to the equation is the \(x\)-coordinate where these two lines intersect (cross each other).

Key Takeaway: The point where two graphs meet is the solution to the equation formed by setting those two functions equal to each other.


3. The Iteration Method: The "Loop" to the Answer

Now that we know where the root is, how do we get closer to it? We use a process called iteration. This is like a mathematical loop where you use your current answer to get an even better one.

Step-by-Step: Creating the Formula

1. Rearrange your equation \(f(x) = 0\) into the form \(x = F(x)\).
2. Notation: We write this as \(x_{n+1} = F(x_n)\). This just means "the next value (\(x_{n+1}\)) is found by plugging the current value (\(x_n\)) into the formula."
3. Start: Pick a starting value, \(x_1\) (usually given in the question).
4. Repeat: Plug \(x_1\) into the formula to get \(x_2\). Then plug \(x_2\) into the formula to get \(x_3\), and so on.

An Analogy for Iteration

Think of iteration like adjusting the temperature of a shower. You start with a guess, feel the water, adjust it slightly, feel it again, and keep adjusting until it's exactly right. Each adjustment is one "iteration."

Common Mistake: When using your calculator, don't re-type the whole number every time! Use the ANS button. Type your starting value and press EXE/=. Then type the formula using the ANS key. Now, every time you press EXE, it calculates the next step for you!

Failure to Converge

Sometimes, the numbers don't get closer to the root—they might get bigger and bigger or bounce around. If the sequence of numbers doesn't settle down, we say it fails to converge. If this happens, you might need a different rearrangement of the equation.


4. Accuracy: When do we stop?

The question will usually ask for the root to a certain degree of accuracy (e.g., 2 decimal places). You stop when your values for \(x_n\) and \(x_{n+1}\) are the same when rounded to that degree of accuracy.

The Final Check (The Boundary Test)

If you think the root is \(1.23\) to 2 decimal places, how can you be absolutely sure? You test the boundaries. The boundaries for \(1.23\) are \(1.225\) and \(1.235\).

If there is a sign change between \(f(1.225)\) and \(f(1.235)\), then the root must round to \(1.23\). It's the ultimate proof!

Key Takeaway: Use the "sign change" rule on the upper and lower bounds of your answer to prove it is correct to the required decimal places.


Summary Checklist

• To locate a root, look for a sign change between two \(x\) values.
• To use iteration, rearrange the equation into \(x = F(x)\).
• Use the ANS button on your calculator to save time and prevent errors.
• If the numbers don't get closer to a single value, the iteration has failed.
• Always verify your final answer using the upper and lower bounds of your result.

Don't worry if this seems tricky at first! With a bit of practice using your calculator, you'll find that numerical solutions are actually one of the most reliable sections of the exam. You've got this!