diff options
Diffstat (limited to '446/CH12/EX12.3')
-rwxr-xr-x | 446/CH12/EX12.3/12_3.sce | 9 | ||||
-rwxr-xr-x | 446/CH12/EX12.3/12_3.txt | 4 |
2 files changed, 13 insertions, 0 deletions
diff --git a/446/CH12/EX12.3/12_3.sce b/446/CH12/EX12.3/12_3.sce new file mode 100755 index 000000000..751485d40 --- /dev/null +++ b/446/CH12/EX12.3/12_3.sce @@ -0,0 +1,9 @@ +clear
+clc
+disp('Exa-12.3');
+m=1.67*10^-27; r0=1.2*10^-15; v=4*%pi*(r0^3)/3 //standard values of mass radius and volume
+p=m/v; //denisty
+printf('Density of typical nucleus is %.0e kg/m3 \n',p);
+r0=0.01;v=4*%pi*(r0^3)/3;p=2*10^17; ////hypothetical values
+m1=p*v;
+printf('The mass of the hypothetical nucleus would be %.0e Kg',m1);
diff --git a/446/CH12/EX12.3/12_3.txt b/446/CH12/EX12.3/12_3.txt new file mode 100755 index 000000000..0087f474c --- /dev/null +++ b/446/CH12/EX12.3/12_3.txt @@ -0,0 +1,4 @@ +
+ Exa-12.3
+Density of typical nucleus is 2e+017 kg/m3
+The mass of the hypothetical nucleus would be 8e+011 Kg
\ No newline at end of file |