summaryrefslogtreecommitdiff
path: root/1172/CH6/EX6.15
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1172/CH6/EX6.15
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1172/CH6/EX6.15')
-rwxr-xr-x1172/CH6/EX6.15/6_15.txt5
-rwxr-xr-x1172/CH6/EX6.15/Example6_15.sce11
2 files changed, 16 insertions, 0 deletions
diff --git a/1172/CH6/EX6.15/6_15.txt b/1172/CH6/EX6.15/6_15.txt
new file mode 100755
index 000000000..7a7c8f7cd
--- /dev/null
+++ b/1172/CH6/EX6.15/6_15.txt
@@ -0,0 +1,5 @@
+ # Problem 15 #
+
+ Standard formula used
+ l = l_o* sqrt ( 1- (v/c)^2)
+ Proper length of rod is 1.250000 m.
diff --git a/1172/CH6/EX6.15/Example6_15.sce b/1172/CH6/EX6.15/Example6_15.sce
new file mode 100755
index 000000000..10fa06e38
--- /dev/null
+++ b/1172/CH6/EX6.15/Example6_15.sce
@@ -0,0 +1,11 @@
+clc
+//Given that
+c = 3e8 // speed of light in m/s
+v = 0.6 * c // velocity of rod wrt laboratory
+l_ = 1 // length of rod measured by observer in lab
+// sample problem 15 page No. 228
+printf("\n \n\n # Problem 15 # \n")
+printf("\n Standard formula used \n l = l_o* sqrt ( 1- (v/c)^2)")
+l = l_ / sqrt (1 - (v / c)^2) // calculation of Proper length of rod
+printf ("\n Proper length of rod is %f m.",l )
+