diff options
Diffstat (limited to '1172/CH6/EX6.15')
-rwxr-xr-x | 1172/CH6/EX6.15/6_15.txt | 5 | ||||
-rwxr-xr-x | 1172/CH6/EX6.15/Example6_15.sce | 11 |
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 )
+
|