summaryrefslogtreecommitdiff
path: root/3648/CH6/EX6.5
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH6/EX6.5')
-rw-r--r--3648/CH6/EX6.5/Ex6_5.sce13
-rw-r--r--3648/CH6/EX6.5/Ex6_5.txt3
2 files changed, 16 insertions, 0 deletions
diff --git a/3648/CH6/EX6.5/Ex6_5.sce b/3648/CH6/EX6.5/Ex6_5.sce
new file mode 100644
index 000000000..9576c52a0
--- /dev/null
+++ b/3648/CH6/EX6.5/Ex6_5.sce
@@ -0,0 +1,13 @@
+//Example 6_5
+clc();
+clear;
+//To find the velocity of each ball after collision
+m1=0.04 //units in kg
+m2=0.08 //units in kg
+v1=0.3 //units in meters/sec
+v2f=(2*m1*v1)/(m1+m2) //units in meters/sec
+v2f1=v2f*100 //units in cm/sec
+printf("The velocity V2f=%.1f meters/sec or %d cm/sec\n",v2f,v2f1)
+v1f=((m1*v1)-(m2*v2f))/m1 //units in meters/sec
+v1f1=-v1f*100 //units in cm/sec
+printf("The velocity V1f=%.1f meters/sec or %d cm/sec\n",v1f,v1f1)
diff --git a/3648/CH6/EX6.5/Ex6_5.txt b/3648/CH6/EX6.5/Ex6_5.txt
new file mode 100644
index 000000000..df0d4b911
--- /dev/null
+++ b/3648/CH6/EX6.5/Ex6_5.txt
@@ -0,0 +1,3 @@
+The velocity V2f=0.2 meters/sec or 20 cm/sec
+The velocity V1f=-0.1 meters/sec or 10 cm/sec
+ \ No newline at end of file