diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /446/CH12/EX12.1 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '446/CH12/EX12.1')
-rwxr-xr-x | 446/CH12/EX12.1/12_1.sce | 12 | ||||
-rwxr-xr-x | 446/CH12/EX12.1/12_1.txt | 13 |
2 files changed, 25 insertions, 0 deletions
diff --git a/446/CH12/EX12.1/12_1.sce b/446/CH12/EX12.1/12_1.sce new file mode 100755 index 000000000..89851765f --- /dev/null +++ b/446/CH12/EX12.1/12_1.sce @@ -0,0 +1,12 @@ +clear
+clc
+disp('Exa-12.1(a)');
+Z=2;A=4;N=A-Z; // Given values
+printf('The following method of representing atoms is followed throughout the chapter\n\t\t x,ySz\n where x=atomic number y=mass number z= Neutron Number S=symbol of the atom\n\n')
+printf('The helium can be reperesented as %d,%dHe%d\n',Z,A,N);
+disp('Exa-12.1(b)');
+Z=50;N=66;A=Z+N; //// Given values and standard formulae
+printf('The helium can be reperesented as %d,%dSn%d\n',Z,A,N);
+disp('Exa-12.1(c)');
+A=235;N=143;Z=A-N;
+printf('The helium can be reperesented as %d,%dU%d',Z,A,N);
\ No newline at end of file diff --git a/446/CH12/EX12.1/12_1.txt b/446/CH12/EX12.1/12_1.txt new file mode 100755 index 000000000..0329d47e1 --- /dev/null +++ b/446/CH12/EX12.1/12_1.txt @@ -0,0 +1,13 @@ +
+ Exa-12.1(a)
+The following method of representing atoms is followed throughout the chapter
+ x,ySz
+ where x=atomic number y=mass number z= Neutron Number S=symbol of the atom
+
+The helium can be reperesented as 2,4He2
+
+ Exa-12.1(b)
+The helium can be reperesented as 50,116Sn66
+
+ Exa-12.1(c)
+The helium can be reperesented as 92,235U143
\ No newline at end of file |