1. How many iterations should be done when using the Bisection Method?

The number of iterations depends on the number of decimal places required.

2. How do I know when to stop when using the Bisection Method?

There are two ways:

If working to 2 decimal places, continue until x2 − x1 < 0.01

For 3 decimal places, continue until x2 − x1 < 0.001. etc.

OR

Continue until both x1 and x2 have the same value, when rounding to the desired number of decimal places.