#Given
I=300*10**-3
e=1.6*10**-19 #C
t=60 #S
#Calculation
q=I*t
n=q/e
#Result
print"Number of electron passed is", n
#Given
e=1.6*10**-19 #C
v=6.8*10**15 #revolution/s
r=0.51*10**-10 #m
#Calculation
I=e*v
#Result
print"Equivalent current is", I*10**3,"*10**-3 A"
#Given
I=10 #A
n=9*10**28 #/m**3
A=10.0**-4 #m**2
e=1.6*10**-19
#Calculation
Vd=I/(n*e*A)
#Result
print"Drift velocity is", round(Vd*10**6,2)*10**-6,"m/s"
#Given
n=8.5*10**28 #/m**3
I=3 #A
A=2.0*10**-6 #m**2
l=3 #m
e=1.6*10**-19
#Calculation
Vd=I/(n*e*A)
t=I/Vd
#Result
print"Drift velocity of the electron is", round(Vd*10**4,3),"*10**-4 m/s"
#Given
A=10**-7 #m**2
I=1 #A
K=6.023*10**23
w=63.5
d=9*10**3 #Kg/m**3
#Calculation
a=(K/w)*1000
n=a*d
Vd=I/(n*e*A)
#Result
print"Average drift velocity is", round(Vd*10**4,2),"*10**-4 m/s"
#Given
V=5 #Volt
l=0.1 #m
vd=2.5*10**-4 #m/s
#Calculation
E=V/l
u=vd/E
#Result
print"Electron mobility is", u,"m**2/V/s"
#Given
V=3 #Volt
l=0.2 #m
A=10**-6 #m**2
n=8.5*10**28 #/m**3
u=4.5*10**-6 #m**2/V/s
e=1.6*10**-19
#Calculation
E=V/l
I=n*A*u*E*e
#Result
print"Current through the wire is",round(I,2),"A"
#Given
I=1.8 #A
A=0.5*10**-6 #m**2
n=8.8*10**28
e=1.6*10**-19
#Calculation
j=I/A
vd=j/(n*e)
#Result
print"Drift velocity is", round(vd*10**4,2),"*10**-4 m/s"
#Given
V=1.5 #V
n=8.4*10**28 #/m**3
l=0.2 #m
A=0.3*10**-6 #m**2
I=2.4 #A
m=9.1*10**-31 #Kg
e=1.6*10**-19
#Calculation
E=V/l
j=I/A
t=m*j/(n*e**2*E)
#Result
print"Average relaxation time is ", round(t*10**16,2)*10**-16,"s"
#Given
V=200 #V
R=100.0 #ohm
t=1
#Calculation
I=V/R
q=I*t
n=q/e
#Result
print"Number of electrons is", n
#Given
R=2 #ohm
l=1 #m
d=4*10**-4 #m
#Calculation
import math
A=(math.pi*d**2)/4.0
a=(R*A)/l
#Result
print"Resistivity of the material is", round(a*10**7,3)*10**-7,"ohm m"
#Given
m=0.45 #Kg
R=0.14 #ohm
a=1.78*10**-8 #ohm m
l=1.99
d=8.93*10**3
#Calculation
import math
l=(math.sqrt(R*m/(a*d)))/10.0
r=math.sqrt(m/(math.pi*l*d))
#Result
print"Radius is", round(r*10**3,2),"mm"
print"Length is", round(l,2),"m"
#Given
R=5
#Calculation
R1=4*R
#Result
print"New resistance is",R1,"ohm"
#Given
l=3
A=0.02*10**-6 #m**2
R=2 #ohm
#Calculation
a=l/(R*A)
#Result
print"Electrical conductivity is", a*10**-7,"*10**7 S/m"
#Given
V=1.8 #V
I=1.2 #A
l=3 #m
A=5.4*10**-6 #m**2
#Calculation
R=V/I
G=1/R
a=l/(R*A)
#Result
print"Conductance is",round(G,2),"S"
print"Conductivity is", round(a*10**-5,1),"*10**5 S/m"
#Given
R1=2.1 #ohm
a1=300.0 #K
a2=373.0
R2=2.7 #ohm
#Calculation
A=(R2-R1)/(R1*(a2-a1))
#Result
print"Temperature coefficient is", round(A*10**3,3),"*10**-3 /K"
#Given
a1=50 #degree
R1=6.0 #ohm
a2=100 #degree
R=7 #ohm
#Calculation
a=(R-R1)/(R1*(a2-a1))
R0=R1/(1+(a*a1))
#Result
print"Mean temperature coefficient is", round(a,4),"degree/C"
print"Resistance of the conductor is",round(R0,3),"W"
#Given
V=230 #v
a=27 #degree C
I1=3.2 #A
I2=2.8 #A
a1=1.70*10**-4 #degree/C
#Calculation
R1=V/I1
R2=V/I2
a2=a+((R2-R1)/(R1*a1))
#Result
print"Steady temperature is", round(a2,2),"degree C"
#Given
R1=1 #ohm
R2=2
R3=3
E=12 #V
#Calculation
Rs=R1+R2+R3
I=E/Rs
R11=I*R1
R12=I*R2
R13=I*R3
#Result
print"(a) Total resistance of the combination is",Rs,"ohm"
print"(b) Potential drop across R1 is",R11,"V"
print" Potential drop across R2 is",R12,"V"
print" Potential drop across R3 is",R13,"V"
#Given
R1=2.0 #ohm
R2=4.0 #ohm
R3=5.0
E=20 #V
#calculation
Rp=1/(1/R1+1/R2+1/R3)
I=E/Rp
I1=E/R1
I2=E/R2
I3=E/R3
print"(a) Toatl resisatnce is", round(Rp,2),"ohm"
print"(b) Current through R1 is",I1,"A"
print"Current through R2 is",I2,"A"
print"Current through R3 is",I3,"A"
#Given
R=6
R1=2.0
#calculation
n=R/R1
#Result
print"Number of resistance is",n
#Given
R1=9.0 #ohm
R2=5.0
R3=3.0
R4=7.0
#Calculation
R11=R1+R2
R22=R3+R4
R=1/(1/R11+1/R22+1/R22)
#Result
print"Equivalent resistance is",round(R,2),"ohm"
#Given
R1=3 #ohm
R2=3
#Calculation
R11=R1+R2
R22=(R11*R11)/(R11+R11)
R=R11*R1/(R11+R1)
#Result
print"Effective resistance is", R,"ohm"
#Given
R1=30.0 #ohm
R2=30.0
E=2 #V
#Calculation
R11=R1+R2
R=R11*R1/(R11+R1)
I=E/R
#Result
print"Current through the cell is",I,"A"
#Given
Rl=500.0 #ohm
E=50 #V
Rac=2000.0 #ohm
Rab=500.0
#Calculation
Rbc=Rac-Rab
R11=1/(1/Rbc+1/Rl)
I=E/(Rab+R11)
V=E-(I*Rab)
I1=E/Rac
Rbc1=40/I1
#Result
print"(a) Potential difference across the load is", round(V,2),"V"
print"(b) Resistance is",Rbc1,"ohm"
#Given
R1=3 #ohm
E=9 #V
#Calcuation
R=R1+R1+R1
I=E/R
I1=I/4.0
#Result
print"Total resistance is",R,"ohm"
print"Current is",I1,"A"
#Given
R1=1 #ohm
R2=1
r=2/3.0 #ohm
E=1 #V
#Calculation
R11=R1*R2/(R1+R2)
R=1/(1/R1+1/R2+1/R1)
I=E/(R+r)
#Result
print"Current drawn from the cell is", I,"A"
#Given
R=10.0 #ohm
r=3.33
E=15
#Calculation
Rp=1/(1/R+(1/(R+R)))
R1=R+Rp+R
I=E/(R1+r)
V=I*Rp
I1=V/(R+R)
I2=V/R
#Result
print"Current flow through the main circuit is", round(I,1),"A"
print"Current through QRS is",round(I1,3),"A"
print"Current through QS is",round(I2,3),"A"
#Given
R1=2 #ohm
R2=3
R3=2.8
E=6 #V
#calculation
R=(R1*R2/(R1+R2))+R3
I=E/R
#Result
print"Current in steady state is", round(I,1),"A"
#Given
E=10 #v
r=3 #ohm
I=0.5 #A
#Calculation
R=(E/I)-r
V=I*R
#Result
print"Resistance of the resistor is", R,"ohm"
print"Terminal voltage is",V,"V"
#Given
R1=3.0 #ohm
R2=4.0
R3=6.0
r=2/3.0
E=2 #V
#Calculation
Rp=1/(1/R1+1/R2+1/R3)
R=Rp+r
I=E/R
V=I*Rp
I1=V/R1
#Result
print"Current drawn from the cell is", I,"A"
print"Current through 3 Ohm resistance is",round(I1,2),"A"
#Given
E=8
R=3.0
r=1.0
#Calculation
I=E/(R+r)
I1=I/2.0
#Result
print"Current from the battery is",I,"A"
print"Current through AC and ABC is",I1,"A"
#Given
E=12 #V
R2=8 #ohm
r=1 #ohm
#Calculation
R1=-((E/I)-R2-r)
#Result
print"Value of resistance is", R1,"ohm"
#Given
E1=20 #V
r1=1 #ohm
E2=8 #Volt
r2=2 #ohm
R1=12.0
R2=6.0
R3=4.0
#Calculation
E=E1-E2
R11=1/(1/R1+1/R2+1/R3)
R=R11+r1+r2+5
I=E/R
I1=I-1
V1=E1-(I*r1)
V2=E2+(I*r2)
#Result
print"(a) Current in the circuit is", I,"A"
print"(b) Current in the resister is", I1,"A"
print"(c) Potential difference across 12 V battery is", V1,"V"
print" Potential difference across 8 V battery is",V2,"V"
#Given
E=2 #V
r=0.015 #ohm
R=8.5
#Calculation
E1=E*6
r1=r*6
I=E1/(R+r1)
V=I*R
#Result
print"Current drawn from the supply is", round(I,3),"A"
print"Terminal voltage is",round(V,3),"V"
#Given
E=4 #V
I=1.5 #A
R=6 #ohm
#Calculation
E1=3*E
r=((E1/I)-R)/3.0
V=E-(I*r)
#Result
print"(a) Internal resistance is", round(r,2),"ohm"
print"(b) Terminal voltage is",V,"Volt"
#Given
R1=15.0 #ohm
R2=15.0
E=2
V=1.6
#Calculation
R=R1*R2/(R1+R2)
r=(((E/V)-1)*R)*4
#Result
print"Internal resistance is", r,"ohm"
#Given
E=1
a=2
#Calculation
r=(a*E*(a-E))/(a*E*(a-E))
#Result
print"The internal resistance is",r,"ohm"
#Given
E=2 #V
r=1.5 #ohm
R=10 #ohm
r1=1.5
r2=1.5
#Calculation
E1=2*E
w=r1+r2
A=1/(1/w+1/w)
B=R+A
I=E1/B
IR=I*R
#Result
print"The potential difference across external resistance is",round(IR,2),"V"
#Given
n=2.7*10**18
N=1.0*10**18
e=1.6*10**-19
V=230 #V
#Calculation
I=(n+N)*(e)
R=V/I
#Result
print"The effective resistance of the tube is",round(R,1),"ohm"
#Given
X=1
a=3
E1=12
r=0.5
#Calculation
import math
X1=X+math.sqrt(a)
I=E1/(X1+r)
#Result
print"Current drawn is", round(I,3),"A"
#Given
R1=6
R2=3.0
R3=5
E=24 #V
I=3 #A
#Calculation
Rp=(R1*R2)/(R1+R2)
R=R3+Rp+r
r=R-(R3+Rp)
V=I*Rp
I1=V/R1
I2=V/R2
R11=R2+R3+r
I11=E/R11
#Result
print"(a) Internal resistance is", r,"ohm"
print" Current I1 is",I1,"A and I2 is",I2,"A"
print"(b) Current in the circuit is",round(I11,2),"A"