username842
- 1
- 0
Hi how would you solve formula such as this?
example
x=1
y=1
z=1
x = y * z
z = z + 1
x=?
y=?
z=?
example
x=1
y=1
z=1
x = y * z
z = z + 1
x=?
y=?
z=?
This discussion focuses on solving formulas with given variable values, specifically using the example where x, y, and z are initialized to 1. The calculation involves substituting the values of y and z into the formula x = y * z, resulting in x = 1. After updating z with the operation z = z + 1, the new value of z becomes 2, while y remains unchanged at 1. The final values are x = 1, y = 1, and z = 2.
PREREQUISITESThis discussion is beneficial for students learning algebra, educators teaching mathematical concepts, and anyone interested in understanding variable manipulation in formulas.
username842 said:Hi how would you solve formula such as this?
example
x=1
y=1
z=1
x = y * z
z = z + 1
x=?
y=?
z=?