//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