#given
c=3*10**8 #m/s , speed of light
f=150*10**6 #frequency
#calculation
h=c/f
x=1/2.0 #antennas dimension(D)
D=0.5*2
Rff=5*D
h=c/f
D = h/2
#result
print" distance =",Rff,"m"
#given
c=3*10**8 #velocity of light
f=12.0*10**9 #frequency
D=4.5 #diameter of parabolic reflector
#calculation
h=c/f #wavelength
x=D/h
R=(2*D**2)/h
#result
print"distance from parabolic reflector= ",R,"m"
#given
Pt=10 #transmitted power
#dipoles have gain 2.15dB
Gr=1.64
c=3*10**8 #velocity of light
f=144.0*10**6 #frequency
d=50*10**3 #distance between antennas
Gt=1.64 #recieving antenna gain(ratio) compared to isotropic radiator
#calculation
import math
Pr=Pt*Gt*Gr*(c/f)**2/((16*(math.pi)**2)*(d**2)) #power recieved
#result
print"Power received = ",round(Pr,12),"w"
#Given
c=3*10**8 #velocity of light
f=100*10**6 #frequency
#Calculation
h=c/f #wavelength
x=h/2.0 #dipole i.e h/2
l=0.95*x #applying 95% correction,the actual optimum physical length
L=486/100.0 #alternative method to find length
#Result
print"length of antenna = ",l,"m"