diff options
Diffstat (limited to '3648/CH3/EX3.12')
-rw-r--r-- | 3648/CH3/EX3.12/Ex3_12.sce | 11 | ||||
-rw-r--r-- | 3648/CH3/EX3.12/Ex3_12.txt | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/3648/CH3/EX3.12/Ex3_12.sce b/3648/CH3/EX3.12/Ex3_12.sce new file mode 100644 index 000000000..ba781be66 --- /dev/null +++ b/3648/CH3/EX3.12/Ex3_12.sce @@ -0,0 +1,11 @@ +//Example 3_12
+clc();
+clear;
+//To find out where the ball will hit the ground
+//Horizontal
+y=2 //units in meters
+a=9.8 //units in meters/sec^2
+t=sqrt(y/(0.5*a)) //units in sec
+v=15 //units in meters/sec
+x=v*t //units in sec
+printf("The ball hits the ground at x=%.2f meters",x)
diff --git a/3648/CH3/EX3.12/Ex3_12.txt b/3648/CH3/EX3.12/Ex3_12.txt new file mode 100644 index 000000000..9644fbe85 --- /dev/null +++ b/3648/CH3/EX3.12/Ex3_12.txt @@ -0,0 +1 @@ +The ball hits the ground at x=9.58 meters
\ No newline at end of file |