Algebra equation

kiloeras

New member
Joined
Dec 11, 2019
Messages
4
Hello I need help for resolving this equation


C#:
                var baseRad = Math.PI * 2.21050703333333/ 180;
                var targetRad = Math.PI * targetX / 180;
                var theta = 41.42872355- targetY;
                var thetaRad = Math.PI * theta / 180;

                0.99999999993643984=
                    Math.Sin((double)baseRad) * Math.Sin((double)targetRad) + Math.Cos((double)baseRad) *
                    Math.Cos((double)targetRad) * Math.Cos((double)thetaRad);

I want to know target x and target y.

Thank you!
 
Hello I need help for resolving this equation


C#:
                var baseRad = Math.PI * 2.21050703333333/ 180;
                var targetRad = Math.PI * targetX / 180;
                var theta = 41.42872355- targetY;
                var thetaRad = Math.PI * theta / 180;

                0.99999999993643984=
                    Math.Sin((double)baseRad) * Math.Sin((double)targetRad) + Math.Cos((double)baseRad) *
                    Math.Cos((double)targetRad) * Math.Cos((double)thetaRad);

I want to know target x and target y.

Thank you!
Please post the problem/assignment as it was given to you (NOT just the CODE!)

What are your thoughts?

Please share your work with us ...even if you know it is wrong.

If you are stuck at the beginning tell us and we'll start with the definitions.

You need to read the rules of this forum. Please read the post titled "Read before Posting" at the following URL:

http://www.freemathhelp.com/for
 
Top