From 7bc77cb1ed33745c720952c92b3b2747c5cbf2df Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Sat, 3 Feb 2018 11:01:52 +0530 Subject: Added new code --- 3886/CH14/EX14.3/14_3.sce | 8 ++++++++ 3886/CH14/EX14.3/14_3.txt | 5 +++++ 2 files changed, 13 insertions(+) create mode 100644 3886/CH14/EX14.3/14_3.sce create mode 100644 3886/CH14/EX14.3/14_3.txt (limited to '3886/CH14/EX14.3') diff --git a/3886/CH14/EX14.3/14_3.sce b/3886/CH14/EX14.3/14_3.sce new file mode 100644 index 000000000..125117821 --- /dev/null +++ b/3886/CH14/EX14.3/14_3.sce @@ -0,0 +1,8 @@ +//Two trains +//Taking the direction of motion of train A as positive +//let velocity of A be v m/sec +//Relative velocity=1.5*v +vA=20*((60*60)/(1000)) //kmph +//velocity of B +vB=-10*((60*60)/(1000)) //kmph +printf("\nVelocity of A=%.2f kmph\nVelocity of B=%.2f kmph",vA,-vB) diff --git a/3886/CH14/EX14.3/14_3.txt b/3886/CH14/EX14.3/14_3.txt new file mode 100644 index 000000000..fbdc6bc01 --- /dev/null +++ b/3886/CH14/EX14.3/14_3.txt @@ -0,0 +1,5 @@ + +--> exec('E:\My program EM\14.Relative velocity\14.3.sce', -1) + +Velocity of A=72.00 kmph +Velocity of B=36.00 kmph \ No newline at end of file -- cgit