When you see a * b / c this means ONLY that you have to multiply a by b and then divide the result by c. Without parentheses the order of operations with equal priority goes from left to right (and * and / are of equal priority).
In math formulas like this:
You should evaluate the bottom part first:
Code:T = m * v^2 / (1 - v^2 / c^2 + Math.Sqrt(1 - v ^2 / c ^2))





Reply With Quote