summaryrefslogtreecommitdiff
path: root/1271/CH11/EX11.34
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1271/CH11/EX11.34
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 '1271/CH11/EX11.34')
-rwxr-xr-x1271/CH11/EX11.34/34.txt2
-rwxr-xr-x1271/CH11/EX11.34/example11_34.sce10
2 files changed, 12 insertions, 0 deletions
diff --git a/1271/CH11/EX11.34/34.txt b/1271/CH11/EX11.34/34.txt
new file mode 100755
index 000000000..03d7dd45d
--- /dev/null
+++ b/1271/CH11/EX11.34/34.txt
@@ -0,0 +1,2 @@
+
+ Proper life time of particle is 7.180220e-08 sec.
diff --git a/1271/CH11/EX11.34/example11_34.sce b/1271/CH11/EX11.34/example11_34.sce
new file mode 100755
index 000000000..b0371ed05
--- /dev/null
+++ b/1271/CH11/EX11.34/example11_34.sce
@@ -0,0 +1,10 @@
+clc
+// Given that
+t = 2e-7 // life time of particle when it is moving in sec
+v = 2.8e8 // speed of particle in meter/sec
+// Sample Problem 34 on page no. 11.31
+printf("\n # PROBLEM 34 # \n")
+printf(" Standard formula used \n")
+printf(" t = t_0/((1-v^2/c^2)^1/2) \n")
+T_ = t * sqrt(1 - (v / 3e8)^2)
+printf("\n Proper life time of particle is %e sec.",T_)