summaryrefslogtreecommitdiff
path: root/3850/CH46/EX46.1/Ex46_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3850/CH46/EX46.1/Ex46_1.sce')
-rw-r--r--3850/CH46/EX46.1/Ex46_1.sce17
1 files changed, 17 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);