Answer:
Frequency, f = 0.63 Hz
Period, T = 1.58 s
Speed of a wave, v = 1.34 m/s
Explanation:
The equation of a wave is given by :
...(1)
y is in mm
x is in meters
t is in seconds
The general equation of a wave is given by :
...(2)
(i) Compare equation (1) and (2) we get :

Since,

(ii) Period of wave is :

(iii) Speed of a wave,

It is called the fovea centralis.
Answer: 2.37N
Explanation:
According to coulombs law which states that the force of attraction (F) between two charges (q1 and q2) is directly proportional to the product of their charges and inversely proportional to the square of the distance (r) between them. Mathematically,
F = kq1q2/r²
For the first two charges that are sitting 1.5 m apart with a force of 3 N between them, we have
3 = kq1q2/1.5²
3 = kq1q2/2.25
Kq1q2= 6.75... (1)
If the charges are now moved farther apart 2.25 m and one of the charges is increased by a factor of 4. The formula becomes
F2 = k(4q1)q2/2.25² (q1 has been increased by factor of 4)
k(4q1)q2 = 5.06F2 ... (2)
Dividing 2 by 1 we have
k(4q1)q2/kq1q2 = 5.06F2/3
4 = 5.06F2/3
5.06F2 = 12
F2= 12/5.06
F2 = 2.37N
Therefore the magnitude of the new force between the two charges is 2.37N
Answer:
Written in Python
def energyvector(mass):
c = 2.9979 * 10**8
energy = mass * c ** 2
print(round(energy,2))
Explanation:
This line defines the function
def energyvector(mass):
This line initializes the speed of light
c = 2.9979 * 10**8
This line calculates the corresponding energy
energy = mass * c ** 2
This line prints the calculated energy
print(round(energy,2))