diff options
Diffstat (limited to '3850/CH46/EX46.1')
-rw-r--r-- | 3850/CH46/EX46.1/Ex46_1.sce | 17 | ||||
-rw-r--r-- | 3850/CH46/EX46.1/Ex46_1.txt | 3 |
2 files changed, 20 insertions, 0 deletions
diff --git a/3850/CH46/EX46.1/Ex46_1.sce b/3850/CH46/EX46.1/Ex46_1.sce new file mode 100644 index 000000000..5ecdd7bc9 --- /dev/null +++ b/3850/CH46/EX46.1/Ex46_1.sce @@ -0,0 +1,17 @@ +
+
+//To Calculate the radius of Nucleus of Germanium atom
+
+//Example 46.1
+
+clear;
+
+clc;
+
+A=70;//Mass Number of Germanium Atom
+
+R0=1.1;//Constant R0 in fetometers
+
+R=R0*A^(1/3);//Radius of Nucleus of Germanium atom
+
+printf("Radius of Nucleus of Germanium atom = %.2f fm",R);
diff --git a/3850/CH46/EX46.1/Ex46_1.txt b/3850/CH46/EX46.1/Ex46_1.txt new file mode 100644 index 000000000..17611d888 --- /dev/null +++ b/3850/CH46/EX46.1/Ex46_1.txt @@ -0,0 +1,3 @@ + + + Radius of Nucleus of Germanium atom = 4.53 fm
\ No newline at end of file |