|
|
|
|
|
by cygx
1359 days ago
|
|
Did you ever need to do involved mathematical manipulations using pen and paper? How would you judge the readability of the following expressions: zero_point equals negative prefactor divided_by two plus_or_minus square_root_of( square_of(prefactor divided_by two) minus absolute_term )
zero_point = -prefactor/2 ± √((prefactor/2)² - absolute_term)
x = -p/2 ± √((p/2)² - q)
|
|