Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
See the image on bellow Link.
http://jhundfinance.weebly.com/question.html[^]
I have the value of X1, X2 and Ө.
Any one can find R (radius)?
Posted

1 solution

You have to solve the following equation system:

R * cos(ß) = X2
R * cos(ß + Ө) = X1

Then:

R * cos(ß) = X2
R * (cos(ß) * cos(Ө) - sin(ß) * sin(Ө)) = X1

Now, divide the 2nd equation by the first:

cos(Ө) - tg(ß) * sin(Ө) = X1 / X2

Then:

tg(ß) = (cos(Ө) - X1 / X2) / sin(Ө)

And finally:

ß = arctg((cos(Ө) - X1 / X2) / sin(Ө))
R = X2 / cos(ß)
 
Share this answer
 
v2
Comments
Pritesh Aryan 29-Sep-10 5:30am    
Hello Sauro,

I have does meaning of
tg as TAN or TANGENT
and
arctg as INVERSTAN or INVERSTANGENT

Is It Right?

Thanks........
Sauro Viti 29-Sep-10 5:32am    
Yes, it is! tg stays for tangent and arctg stays for arc-tangent (i.e. inverse tangent).

Cheers
Pritesh Aryan 29-Sep-10 6:00am    
Thank you so much,

but there is little error,
please improve it with this

ß = arctg(cos(?) - (X1 / X2) / sin(?))
R = X2 / cos(ß)

Thanks...........
Sauro Viti 29-Sep-10 6:16am    
mhmm... are you sure? I think it should be (cos(B) - X1/X2) / sin(B) = (cos(B) - (X1/X2)) / sin(B)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900