diff options
Diffstat (limited to '3845/CH2/EX2.11/Ex2_11.sce')
-rw-r--r-- | 3845/CH2/EX2.11/Ex2_11.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3845/CH2/EX2.11/Ex2_11.sce b/3845/CH2/EX2.11/Ex2_11.sce new file mode 100644 index 000000000..d41a8f7d5 --- /dev/null +++ b/3845/CH2/EX2.11/Ex2_11.sce @@ -0,0 +1,12 @@ +//Example 2.11
+//Also see Example 2.10
+a=26;//Acceleration (m/s^2)
+x_0=0;//Initial position (m)
+x=402;//Final position (m), See Example 2.10
+v_0=0;//Initial velocity (m/s)
+v=sqrt(v_0^2+2*a*(x-x_0));//Final velocity (m/s)
+printf('Final velocity of the dragster = %0.1f m',v)
+//Positive value of v considered as it is to be in the same direction as acceleration (which is positive)
+//Answer varies due to round off error
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|