find_continuity_point

find_continuity_point(
    f_leq,
    f_gt,
    x_value
) -> 

Find the value ‘a’ that ensures the continuity of a piecewise function at a given point.

Parameters:
NameDescription
f_leqThe function expression for f(x) when x is less than or equal to the continuity point, in the form of a string.

f_gtThe function expression for f(x) when x is greater than the continuity point, in the form of a string.

x_valueThe x-value at which continuity is to be ensured.