diff options
Diffstat (limited to '3845/CH2/EX2.17/Ex2_17.sce')
-rw-r--r-- | 3845/CH2/EX2.17/Ex2_17.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3845/CH2/EX2.17/Ex2_17.sce b/3845/CH2/EX2.17/Ex2_17.sce new file mode 100644 index 000000000..25e33747e --- /dev/null +++ b/3845/CH2/EX2.17/Ex2_17.sce @@ -0,0 +1,9 @@ +//Example 2.17
+//See Figure 2.47
+//Using the points (6.4s,2000m) and (0.50s,525m) marked in the figure
+delta_x=2000-525;//Change in displacement (m)
+delta_t=6.4-0.50;//Change in time (s)
+v=delta_x/delta_t;//Velocity (m/s)
+printf('Average velocity = %0.1f m/s',v)
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|