🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Issue re-arranging equation

Started by
10 comments, last by Seer 6 years, 4 months ago

Thanks very much for the help everyone. The problem was that I had never heard of the notion of reciprocals. After looking into them it all became clear. It really is amazing just how many ways you can manipulate expressions in mathematics. Below are the full workings.

Our initial equation:

gif.latex?x%20%3D%20%5Cfrac%7B4%7D%7Bt%7Dsin%5CTheta%5E%7B2%7D

To bring t over to the left hand side, multiply both sides by t:

gif.latex?tx%20%3D%20%5Cfrac%7B4%7D%7Bt%7D%5Ccdot%20t%5Ccdot%20sin%5CTheta%5E%7B2%7D

This results in:

gif.latex?tx%20%3D%204%20sin%5CTheta%5E%7B2%7D

To get rid of the x on the left hand side, divide both sides by x:

gif.latex?%5Cfrac%7Btx%7D%7Bx%7D%20%3D%20%5Cfrac%7B4%20sin%5CTheta%5E%7B2%7D%7D%7Bx%7D

This initially results in:

gif.latex?t%20%3D%20%5Cfrac%7B4%20sin%5CTheta%5E%7B2%7D%7D%7Bx%7D

This is where I was stuck before, but after looking into reciprocals I understood that the expression could be rewritten as:

gif.latex?t%20%3D%20%284%20sin%5CTheta%5E%7B2%7D%29%5Cfrac%7B1%7D%7Bx%7D

Thanks to the associative and commutative properties of multiplication, this can be rewritten as:

gif.latex?t%20%3D%204%20%5Ccdot%20%5Cfrac%7B1%7D%7Bx%7D%20%5Ccdot%20sin%5CTheta%5E%7B2%7D

Which is the same as our end goal:

gif.latex?t%20%3D%20%5Cfrac%7B4%7D%7Bx%7D%20sin%5CTheta%5E%7B2%7D

 

Thanks again everyone, I really appreciate your help.

This topic is closed to new replies.

Advertisement