From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 24/CH6/EX6.4/Example6_4.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 24/CH6/EX6.4/Example6_4.sce (limited to '24/CH6/EX6.4/Example6_4.sce') diff --git a/24/CH6/EX6.4/Example6_4.sce b/24/CH6/EX6.4/Example6_4.sce new file mode 100755 index 000000000..e735f844c --- /dev/null +++ b/24/CH6/EX6.4/Example6_4.sce @@ -0,0 +1,12 @@ +//Given that +v1 = 97 //in km/hr +//Assuming +A1 = 1 +//therefore +A2 = 2 + +//Sample Problem 6-4 +printf("**Sample Problem 6-4**\n") +//the terminal velocity is inversly proportional to squre root of area +v2 = v1 * sqrt(A1/A2) +printf("The final velocity of cat will be %f km/hr", v2) \ No newline at end of file -- cgit