summaryrefslogtreecommitdiff
path: root/3648/CH27/EX27.2/Ex27_2.sce
blob: 5564333c5772a9c5069c74a4749dae19ea4348a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//Example 27_2
clc();
clear;
//To find the density of gold nucleus
r=6.97*10^-15           //Units in meters
a=197     //Units in u
v=(4/3)*%pi*r^3     //Units in meter^3
m1=1.66*10^-27       //Units in Kg/u
mass=a*m1        //Units in Kg
p=mass/v    //Units in Kg/meter^3
printf("The density of gold nucleus is p=")
disp(p)
printf("Kg/meter^3")