diff options
Diffstat (limited to '1172/CH6/EX6.12.2')
-rwxr-xr-x | 1172/CH6/EX6.12.2/6_12b.txt | 5 | ||||
-rwxr-xr-x | 1172/CH6/EX6.12.2/Example6_14b.sce | 11 |
2 files changed, 16 insertions, 0 deletions
diff --git a/1172/CH6/EX6.12.2/6_12b.txt b/1172/CH6/EX6.12.2/6_12b.txt new file mode 100755 index 000000000..7a14a153a --- /dev/null +++ b/1172/CH6/EX6.12.2/6_12b.txt @@ -0,0 +1,5 @@ + # Problem 12b #
+
+ standard formula used
+ m = m_o/ sqrt ( 1- (v/c)^2)
+ Relativistic mass of particle with respect to another is 7.946525e-25 m/s
diff --git a/1172/CH6/EX6.12.2/Example6_14b.sce b/1172/CH6/EX6.12.2/Example6_14b.sce new file mode 100755 index 000000000..20241230c --- /dev/null +++ b/1172/CH6/EX6.12.2/Example6_14b.sce @@ -0,0 +1,11 @@ +clc
+//Given that
+c = 3e8 // speed of light in m/s
+ratio = 1.95e+03 // Ratio of relativistic mass and rest mass
+// sample problem 14b page No. 227
+printf("\n \n\n # Problem 14b # \n")
+printf("\n Standard formula used \n m = m_o/ sqrt ( 1- (v/c)^2)")
+ratio_1 = 1 /(2* ratio^2) // calculation of ratio of velocity to velocity of light for
+printf ("\n Ratio of velocity to velocity of light for particle is 1 - %e .", ratio_1 )
+
+
|