diff options
Diffstat (limited to '1271/CH11/EX11.28')
-rwxr-xr-x | 1271/CH11/EX11.28/28.txt | 1 | ||||
-rwxr-xr-x | 1271/CH11/EX11.28/example11_28.sce | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/1271/CH11/EX11.28/28.txt b/1271/CH11/EX11.28/28.txt new file mode 100755 index 000000000..5ea596ad5 --- /dev/null +++ b/1271/CH11/EX11.28/28.txt @@ -0,0 +1 @@ + Speed of the rod relative to observer is 0.866025 c.
\ No newline at end of file diff --git a/1271/CH11/EX11.28/example11_28.sce b/1271/CH11/EX11.28/example11_28.sce new file mode 100755 index 000000000..fbe9f6168 --- /dev/null +++ b/1271/CH11/EX11.28/example11_28.sce @@ -0,0 +1,9 @@ +clc +// Given that +r = 0.5 // ratio of length of rod when it is in motion to the length of the rod when it is in rest +// Sample Problem 28 on page no. 11.29 +printf("\n # PROBLEM 28 # \n") +printf(" Standard formula used \n") +printf(" l = l_0/((1-v^2/c^2)^1/2) \n") +v = 3e8 * sqrt(1 - r^2) +printf("\n Speed of the rod relative to observer is %f c.",v/3e8) |