summaryrefslogtreecommitdiff
path: root/3648/CH5/EX5.10
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH5/EX5.10')
-rw-r--r--3648/CH5/EX5.10/Ex5_10.sce10
-rw-r--r--3648/CH5/EX5.10/Ex5_10.txt1
2 files changed, 11 insertions, 0 deletions
diff --git a/3648/CH5/EX5.10/Ex5_10.sce b/3648/CH5/EX5.10/Ex5_10.sce
new file mode 100644
index 000000000..426fa1524
--- /dev/null
+++ b/3648/CH5/EX5.10/Ex5_10.sce
@@ -0,0 +1,10 @@
+//Example 5_10
+clc();
+clear;
+//To calculate how large the average frictional force
+a=9.8 //units in meters/sec^2
+s=4 //units in meters
+v=6 //units in meters/sec
+m=3 //units on Kg
+f=m*((a*s)-(0.5*v^2))/s //units in Newtons
+printf("The average frictional force f=%.1f N",f)
diff --git a/3648/CH5/EX5.10/Ex5_10.txt b/3648/CH5/EX5.10/Ex5_10.txt
new file mode 100644
index 000000000..adc21e258
--- /dev/null
+++ b/3648/CH5/EX5.10/Ex5_10.txt
@@ -0,0 +1 @@
+The average frictional force f=15.9 N \ No newline at end of file