diff options
Diffstat (limited to '3845/CH7/EX7.10/Ex7_10.sce')
-rw-r--r-- | 3845/CH7/EX7.10/Ex7_10.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3845/CH7/EX7.10/Ex7_10.sce b/3845/CH7/EX7.10/Ex7_10.sce new file mode 100644 index 000000000..91d5cc871 --- /dev/null +++ b/3845/CH7/EX7.10/Ex7_10.sce @@ -0,0 +1,9 @@ +//Example 7.10
+m=65;//Mass of player (kg)
+v_i=6;//Initial velocity (m/s)
+f=450;//Force of friction (N)
+theta=5;//Angle of incline (deg)
+d=(1/2*m*v_i^2)/(f+m*g*sind(theta));//Distance slid (m)
+printf('Distance slid = %0.2f m',d)
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|