This function checks if all parentheses in a given equation string are correctly paired and balanced. If there are no parentheses, the equation is considered trivially balanced. It returns `TRUE` if the parentheses are balanced and `FALSE` otherwise.
check_parentheses_balance(eq)A logical value indicating whether the parentheses are balanced (`TRUE`) or not (`FALSE`).
A character string representing an equation.