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/CH9/EX9.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/CH9/EX9.1')
-rwxr-xr-x | 446/CH9/EX9.1/9_1.sce | 7 | ||||
-rwxr-xr-x | 446/CH9/EX9.1/9_1.txt | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/446/CH9/EX9.1/9_1.sce b/446/CH9/EX9.1/9_1.sce new file mode 100755 index 000000000..80504a026 --- /dev/null +++ b/446/CH9/EX9.1/9_1.sce @@ -0,0 +1,7 @@ +clear
+clc
+disp('Ex-9.1');
+E=-2.7;
+K=9*(10^9)*((1.6*(10^-19))^2)/(0.106*10^-9);// taking all the values in meters. 1/(4*pi*e0)= 9*10^9 F/m
+q=((K-E*10^-9)/(4*K))*10^-9; //balancin by multiplying 10^-9 on numerator. to eV.vm terms
+printf('Charge on the sphere required is %.2f times the charge of electron.',q);
diff --git a/446/CH9/EX9.1/9_1.txt b/446/CH9/EX9.1/9_1.txt new file mode 100755 index 000000000..4e6f3f0ac --- /dev/null +++ b/446/CH9/EX9.1/9_1.txt @@ -0,0 +1,3 @@ +
+ Ex-9.1
+Charge on the sphere required is 0.31 times the charge of electron.
\ No newline at end of file |