While I was studying numerical methods and optimizations recently, I observed that whenever we find a root to an equation or a system of linear equations, we always find approximate roots. However, we already have algorithms for finding exact roots.
For example, the Gauss-Seidel or Gauss-Jacobi methods of iterative solution tend to find the "most correct" approximate root to the system of linear equations, although we can find exact roots to a system of linear equations through algorithms such as Gauss elimination or Gauss-Jordan method.
What is the reason to use approximation methods when we can find exact roots?
If I understand your question correctly, the approximation help in terms of calculating the computational complexity. In particular, you effectively reduce the number of operations Flops calculations when you use such approximations.
I hope this help.
Best.