diff options
Diffstat (limited to '3845/CH8/EX8.1/Ex8_1.sce')
-rw-r--r-- | 3845/CH8/EX8.1/Ex8_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3845/CH8/EX8.1/Ex8_1.sce b/3845/CH8/EX8.1/Ex8_1.sce new file mode 100644 index 000000000..f8a8fe679 --- /dev/null +++ b/3845/CH8/EX8.1/Ex8_1.sce @@ -0,0 +1,11 @@ +//Example 8.1
+m=110;//Mass of football player (kg)
+v=8;//Speed (m/s)
+p_player=m*v;//Momentum (kg.m/s)
+printf('a.Momentum of the player = %0.1f kg.m/s',p_player)
+m_ball=0.410;//Mass of the ball (kg)
+v_ball=25;//Velocity of ball (m/s)
+p_ball=m_ball*v_ball;//Momentum of ball (kg.m/s)
+printf('\nb.Ratio of momentum of the player to that of the ball = %0.1f',p_player/p_ball)
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|