A billiard ball moves with 3 kg⋅m/s of momentum and strikes three other billiard balls that have been just sitting there at rest and not moving.
The total momentum of all four balls after the collision is <em>3 kg⋅m/s</em>, because momentum is not created or destroyed. The total amount of it after an event is the same as the total amount of it before the event.
Answer:
a) The final pressure is 1.68 atm.
b) The work done by the gas is 305.3 J.
Explanation:
a) The final pressure of an isothermal expansion is given by:

Where:
: is the initial pressure = 5.79 atm
: is the final pressure =?
: is the initial volume = 420 cm³
: is the final volume = 1450 cm³
n: is the number of moles of the gas
R: is the gas constant
Hence, the final pressure is 1.68 atm.
b) The work done by the isothermal expansion is:

Therefore, the work done by the gas is 305.3 J.
I hope it helps you!
When silver is poured into the mould the it will solidify
In this process the phase of the Silver block will change from liquid to solid.
This phase change will lead to release in heat and this heat is known as latent heat of fusion.
The formula to find the latent heat of fusion is given as

here given that


now we can find the heat released


So it will release total heat of 55.5 kJ when it will solidify
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