blob: 0e1c2d6ca3c05d60f95770080313c49311186bdc (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Initilization of variables
W=1800 //lb
r=2000 //ft
v=58.7 //ft/s
g=32.2 //ft/s^2
//Calculations
F=(W*v*v)/(g*r) //lb
//Result
clc
printf('The frictional force to be exerted is %f lb',F)
|