The moon and the Earth attract each other, with equal gravitational forces.
That may not sound too surprising.
But what do you think of THIS one:
-- You and the Earth attract each other, with equal gravitational forces.
-- Your weight on Earth is the same as the Earth's weight on you.
Answer:
Faraday's law
, he direction of the magnetic field changes by 180º, in the polarity inversion processes, induces a voltage.
Explanation:
For this exercise let's use Faraday's law
E = - dФ / dt
Ф = B.A = B A cos θ
where B is the magnetic field, A is the area and θ is the angle between the field line and the normal to the area.
We can see that an electromotive force (voltage) is indexed when there is a variation of the field B, a variation of the area and change of the angle or when there is a combinational of them.
In this case, the magnitude of the field is constant, as the wire is rigid metal, the area is constant, but the direction of the magnetic field changes by 180º, in the polarity inversion processes, for which reason each change induces a voltage.
If a voltage is created in the ring, which has a resistance, a current is also generated in it.
Therefore the answer is If a current is created in the hoop
Answer:
the refracted rays neither converge nor diverge. After refracting, the light rays are traveling parallel to each other and cannot produce an image.
Explanation:
Queremos crear un diagrama general para calcular el área de un triangulo.
Este será algo como:
- Definir variables
- Pedirle al usuario que introduzca los valores deseados (de las variables).
- Leer los valores deseados y asignarlo a la variable correspondiente.
- Realizar la operación para calcular el área.
- Mostrar en pantalla el resultado.
Como naturalmente habra algunas variaciones segun el programa que utilicemos, lo voy a escribir de forma bastante general.
Primero definamos nuestras variables:
Por ejemple, en fortran usariamos algo como:
real:: B, H, A
Donde B será la variable que usaremos para la base, H para la altura, y A para el área.
Luego tenemos que escribir en pantalla algo que le diga al usario que debe introducir la base y el area.
Luego el programa debe ser capaz de leer ese input.
con algo de la forma:
B = read*input 1
H = read*input 2
Una vez tenemos definidas las variables, simplemente calculamos el área del triangulo:
A = H*B/2
Finalmente la podemos mostrar en pantalla con algo como:
print(A).
Lo que nos mostraría el valor del área.
Concluyendo, el diagrama en general sería:
- Definir variables
- Pedirle al usuario que introduzca los valores deseados (de las variables).
- Leer los valores deseados y asignarlo a la variable correspondiente.
- Realizar la operación para calcular el área.
- Mostrar en pantalla el resultado.
Si quieres aprender más, puedes leer:
brainly.com/question/21949109