blob: 781bdaa3ce073449ed777415f49e05273a4a2314 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Example 4.6
m=70;//Mass of the tightrope walker (kg)
theta=5;//Angle (deg)
g=9.8;//Acceleration due to gravity (m/s^2)
w=m*g;//Weight of the tightrope walker (N)
T=w/(2*sind(theta));//Tension (N), See Equation 4.52
//See textbook for derivation
printf('Tension in the wire = %0.1f N',T)
//Answer varies due to round off error
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|