Performs a single iteration of the false position (regula falsi) method for root-finding. This method approximates the root of a function by using a linear interpolation between two points where the function changes sign.
false_position_update(a, b_n, f_a, f_b, objective_func)Numeric scalar. Updated estimate for the root after one iteration.
Numeric scalar. Left bound of the interval.
Numeric scalar. Right bound of the interval (current step).
Numeric scalar. Value of the objective function evaluated at `a`.
Numeric scalar. Value of the objective function evaluated at `b_n`.
Function. The objective function whose root is being sought.