diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1271/CH11/EX11.7 | |
download | Scilab-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.7')
-rwxr-xr-x | 1271/CH11/EX11.7/7.txt | 1 | ||||
-rwxr-xr-x | 1271/CH11/EX11.7/example11_7.sce | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/1271/CH11/EX11.7/7.txt b/1271/CH11/EX11.7/7.txt new file mode 100755 index 000000000..5cd098a0a --- /dev/null +++ b/1271/CH11/EX11.7/7.txt @@ -0,0 +1 @@ +Speed of particle is 0.552771 c.
\ No newline at end of file diff --git a/1271/CH11/EX11.7/example11_7.sce b/1271/CH11/EX11.7/example11_7.sce new file mode 100755 index 000000000..c8b99fc0c --- /dev/null +++ b/1271/CH11/EX11.7/example11_7.sce @@ -0,0 +1,9 @@ +clc +// Given that +r = 1.2 // ratio of mass of particle to the rest mass +// Sample Problem 7 on page no. 11.20 +printf("\n # PROBLEM 7 # \n") +printf(" Standard formula used \n") +printf(" m = m_0/((1-v^2/c^2)^1/2) \n ") +v = 3e8 * sqrt(1 - (1 / r)^2) +printf("\n Speed of particle is %f c.",v/3e8) |