#Given
q=4.5*10**-19 #C
e=1.6*10**-19 #C
#Calculation
n=q/e
#Result
print"n= ",round(n,1),"This value of charge is not possible"
#Given
q=3.2*10**-7 #C
e=1.6*10**-19 #C
#Calculation
n=q/e
#Result
print"The required number of electrons is ",n
#Given
q=19.2*10**-19
e=1.6*10**-19
me=9*10**-31 #Kg
#Calculation
n=q/e
M=n*me
#Result
print"(i) The value of n=",n,"\n(ii) Charge on silk=",-q*10**19,"*10**-19"
print"(iii) Mass=",M,"Therefore mass transferred is negligibly small"
#Given
a=16
n=6.023*10**23 #C
#Calculation
W=2+a
A=((n*100)/W)*10
#Result
print"Total number of electrons in 100 g of water ", round(A,-23)
#Given
n=10**9
e=1.6*10**-19 #C
Q=1
#Calculation
q=n*e
t=Q/q
#Result
print (t*10**-9),"10**9 S"
print"Time required is about 198 years"
#Given
q1=20 #micro C
q2=-5 #micro C
a=9*10**9
r=0.1
#Calculation
q=q1+q2
q3=q/2.0
F=(a*q3*q3)/r**2
#Result
print"Force is ",round(F*10**-13,3),"N"
#Given
m=9*10**9
q=5*10**-6
r=0.1
#Calculation
import math
F=(m*q*q)/r**2
C=2*F*math.cos(30)*(180/3.14)
#Result
print"Force on each charge is ", round(C,1)*10**-1,"N"
#Given
m=9*10**9
q=1
r=0.24
A=20
B=12.0
m1=10**-4
g=9.8
#Calculation
import math
F=(m*q**2)/r**2
AD=math.sqrt(A**2-B**2)
C=AD/B
F1=(1/C)*m1*g
Q=math.sqrt(F1/F)
#Result
print"Charge on each sphere", round(Q*10**8,1),"10**-8","C"
#Given
F=3.7*10**-9 #C
q=1.6*10**-19 #c
m=9*10**9
r=5*10**-10
#Calculation
import math
n=math.sqrt(F*r**2/(m*q**2))
#Result
print round(n,0),"electrons are missing from each icon"
#Given
e=1.6*10**-19
m=9*10**9
G=6.67*10**-11
me=9.11*10**-31
mp=1.67*10**-27
r=10**-10
#Calculation
F0=(m*e**2)/(G*me*mp)
F1=(m*e**2)/(G*mp*mp)
F2=m*e**2/r**2
A1=F2/me
A2=F2/mp
#Result
print"(a)(i)strength of an electrons and protons", round(F0*10**-39,1)*10**39
print" (ii)Strength of two protons ",round(F1*10**-36,1)*10**36
print"(b) Acceleration of electron is ",round(A1*10**-22,1)*10**22,"m/s**2"
print" Acceleration of proton is ",round(A2*10**-19,1)*10**19,"m/s*2"
#Given
m=9*10**9 #C
q1=10*10**-6
q2=5*10**-6
r=0.05
#Calculation
import math
F1=m*q1*q2/r**2
F2=m*q1*q2/r**2
F3=math.sqrt(F1**2+F2**2+(2*F1*F2*math.cos(120)*180/3.14))
#Result
print"Resultant charge is ", round(F3*10**-1,0),"N"
#Given
m=9*10**9
q1=1.2*10**-8
q2=1
r=0.03
r1=0.04
q3=1.6*10**-8
#Calculation
import math
F1=m*q1*q2/r**2
F2=m*q3*q2/r1**2
F3=math.sqrt(F1**2+F2**2)
#Result
print"Total force is ", F3*10**-5,"10**5","N"
#Given
m=9*10**9
q1=1
q2=100
r=10
q3=75 #C
r1=5
#Calculation
import math
F=m*q1*q2/r**2 #along BA
F1=m*q1*q2/r**2 #along AC
F2=m*q3/(math.sqrt(r**2-r1**2)**2)
F3=math.sqrt(F1**2+F2**2)
X=F1/F2
#Result
print"Force experienced by 1 C Charge is ",round(F3*10**-9,2),"N"