Answer:
The velocity of the boy and the bicycle is 2.2 m/s.
Explanation:
We have,
Mass of child is 30 kg and the mass of bicycle is 20 kg. The combined momentum of the child and the bicycle is 110 kg-m/s.
It is required to find the velocity of the boy and the bicycle. The momentum of an object is given in terms of mass and its velocity. So,

M is combined mass of child and bicycle

So, the velocity of the boy and the bicycle is 2.2 m/s.
Answer:
Image result for what is the force the when does when Gravity pushes you
The important thing to remember is that gravity is neither a push nor a pull; what we interpret as a “force” or the acceleration due to gravity is actually the curvature of space and time — the path itself stoops downward.
Explanation:
Image result for what is the force the when does when Gravity pushes you
The important thing to remember is that gravity is neither a push nor a pull; what we interpret as a “force” or the acceleration due to gravity is actually the curvature of space and time — the path itself stoops downward.
Boyles law describes pressure volume relationship at constant temperature pressure is directly proportional to volume at constant tamparature
The first thing you should know in this case is the following definition:
PV = nRT
Then, as the temperature is constant, then:
PV = k
Then, we have two states:
P1V1 = k
P2V2 = k
We can then equalize both equations:
P1V1 = P2V2
Substituting the values:
(1.25) * (101) = (2.25) * (P2)
Clearing P2:
P2 = ((1.25) * (101)) /(2.25)=56.11Kpa
answer:
the new pressure inside the jar is 56.11Kpa
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