Answer:
The tension in the two ropes are;
T1 = 23.37N T2 = 35.47N
Explanation:
Given mass of the object to be 4.2kg, the weight acting on the bag will be W= mass × acceleration due to gravity
W = 4.2×10 = 42N
The tension acting on the bag plus the weight are three forces acting on the bag. We need to find tension in the two ropes that will keep the object in equilibrium.
Using triangular law of force and sine rule to get the tension we have;
If rope 1 is at 57.6° with respect to the vertical and rope 2 is at 33.8° with respect to the vertical, our sine rule formula will give;
T1/sin33.8° = T2/sin57.6° = 42/sin{180-(33.8°+57.6°)}
T1/sin33.8° = T2/sin57.6° = 42/sin88.6°
From the equality;
T1/sin33.8° = 42/sin88.6°
T1 = sin33.8°×42/sin88.6°
T1 = 23.37N
To get T2,
T2/sin57.6°= 42/sin88.6°
T2 = sin57.6°×42/sin88.6°
T2 = 35.47N
Note: Check attachment for diagram.
<h2>
Answer: Doppler effect
</h2>
Explanation:
A radar gun (also known as a Doppler radar) uses the Doppler effect when measuring "return echoes" after having sent a microwave signal (a type of electromagnetic radiation).
In this context the Doppler effect consists of the change in a wave perceived frequency when the emitter of the waves, and the observer move relative to each other.
In the case of radars, a microwave signal is sent to a target (the tennis or baseball in this case) and then is reflected after "hitting" the target, so that the radar system measures this difference between the sent signal and the reflected signal.
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))
In general, a scientific law<span> is the description of an observed phenomenon. It doesn't explain why the phenomenon exists or what causes it. The explanation of a phenomenon is called a </span>scientific theory<span>. It is a misconception that </span>theories<span> turn into </span>laws<span> with enough research.</span>