More Advanced Math Answers
Question Library
Ask a question about Advanced Math
Volunteer
Experts of the Month
Expert Login
Awards
About Us
Tell friends
Link to Us
Disclaimer
|
| |
|
|
| |
| | | |
About Scott A Wilson
Expertise I can answer any question in general math, arithetic, discret math, algebra, box problems, geometry, filling a tank with water, trigonometry, pre-calculus, linear algebra, complex mathematics, probability, statistics, and most of anything else that relates to math.
Experience Experience in the area; I have tutored people in the above areas of mathematics for almost two years in AllExperts.com. I have tutored people here and there in mathematics ever since I received a BS degree almost 25 years ago.
I tutored at OSU in the math center for all six years I was there. Most students offering assistance were juniors, seniors, or graduate students. I was allowed to tutor as a freshman.
I tutored at Mathnasium for well over a year.
I worked at The Boeing Company for over 5 years.
I received an MS degreee in Mathematics from Oregon State Univeristy.
The classes I took were over 100 hours of upper division credits in mathematical courses such as
calculus, statistics, probabilty, linear algrebra, powers, linear regression, matrices, and more.
I graduated with honors.
Past/Present Clients: College Students at Oregon State University, various math people since college,
over 2,000 people ion the PC from the US and rest the world.
Publications My master's paper was published in the OSU journal.
The subject of it was Numerical Analysis used in shock waves and rarefaction fans.
It dealt with discontinuities that arose over time.
They were solved using the Leap Frog method.
That method was used and improvements of it were shown.
The improvements were by Enquist-Osher, Godunov, and Lax-Wendroff.
Education/Credentials Master of Science at OSU with high honors in mathematics.
Bachelor of Science at OSU with high honors in mathematical sciences.
This degree involved mathematics, statistics, and computer science.
I also took sophmore level physics and chemistry while I was attending college.
On the side I took raquetball, but that's still not relevant.
Awards and Honors I earned high honors in both my BS degree and MS degree from Oregon State.
I was in near the top in most of my classes. In several classes, I was first.
I graduated with well over 50 credits in upper division mathematics.
Past/Present Clients My clients have been students at OSU, people nearby, and friends with math questions,
and several people every day on the PC. Just like you.
| | |
| |
You are here: Experts > Science > Mathematics > Advanced Math > trig
Expert: Scott A Wilson - 11/3/2009
Question You are standing 50 meters from the base of a tree that is leaning 4° from the vertical away from you. The angle of elevation from your feet to the top of the tree is 15°30'.
(a) Draw a triangle that represents the problem. Show the known quantities on the triangle and use the variable h to indicate the height of the tree. (Do this on paper. Your instructor may ask you to turn in this work.)
(b) Write an equation involving the unknown height h of the tree, the angle of elevation from your feet to the top of the tree H, and the angle opposite the distance from you to the base of the tree A.
H=50(Sin(H))/(Sin(A)) <-----I have solved this already I Just need help with C
(C) find the height of the tree
H=? meters
Answer // a program to find the height of a tree
#include <stdio.h>
#include <math.h>
void main() {
float pi = 3.1416;
float B = 15.5; // angle to the top in degrees
float Brad = B*pi/180; // angle in radians
float A = 70.5; // angle at the tree top
float Arad = A*pi/180; // angle in radians
float d = 50; // distance to the tree
float h = d*sin(Brad)/sin(Arad);
printf ("The length of the tree trunk is %5.2f.\n", h);
printf ("The height of the top of the tree off the ground is %5.2f.\n", h*sin(Trad));
}
I compiled and ran this on my computer.
The output was:
The length of the tree trunk is 14.17.
The height of the top of the tree of the ground is 14.14.
Add to this Answer Ask a Question
|
|