3. The sum of the players' momenta is equal to the momentum of the players when they're stuck together:
(75 kg) (6 m/s) + (80 kg) (-4 m/s) = (75 kg + 80 kg) v
where v is the velocity of the combined players. Solve for v :
450 kg•m/s - 320 kg•m/s = (155 kg) v
v = (130 kg•m/s) / (155 kg)
v ≈ 0.84 m/s
4. The total momentum of the bowling balls prior to collision is conserved and is the same after their collision, so that
(6 kg) (5.1 m/s) + (4 kg) (-1.3 m/s) = (6 kg) (1.5 m/s) + (4 kg) v
where v is the new velocity of the 4-kg ball. Solve for v :
30.6 kg•m/s - 5.2 kg•m/s = 9 kg•m/s + (4 kg) v
v = (16.4 kg•m/s) / (4 kg)
v = 4.1 m/s
We have,
- Jane mass is 55 kg
- His body covered with 700 nails all of them having a surface area of 1.00 mm² each = 700 × 1 = 700 mm² = 700/1000000 = 7/10000
We know that,
Let's calculate force as we already have area;
- F = ma
- F = 55 × 9.8 { Acceleration due to gravity }
- F = 539 N
Now, if should she would be on 700 nails then pressure will be;
- P = F/A
- P = 539/7 × 10000
- P = 5390000/7
- P = 770,000 Pascal
And if should would be on a 1 nail only,
- P = F/A
- P = 539/1 × 1000000
- P = 539000000 Pascal
<u>A</u><u>s</u><u>,</u><u> </u><u>y</u><u>o</u><u>u</u><u> </u><u>c</u><u>a</u><u>n</u><u> </u><u>n</u><u>o</u><u>t</u><u>i</u><u>c</u><u>e</u><u> </u><u>y</u><u>o</u><u>u</u><u>r</u><u>s</u><u>e</u><u>l</u><u>f</u><u> </u><u>t</u><u>h</u><u>a</u><u>t</u><u> </u><u>t</u><u>h</u><u>e</u><u> </u><u>p</u><u>r</u><u>e</u><u>s</u><u>s</u><u>u</u><u>r</u><u>e</u><u> </u><u>w</u><u>i</u><u>l</u><u>l</u><u> </u><u>b</u><u>e</u><u> </u><u>s</u><u>o</u><u> </u><u>h</u><u>i</u><u>g</u><u>h</u><u> </u><u>w</u><u>i</u><u>t</u><u>h</u><u> </u><u>o</u><u>n</u><u>l</u><u>y</u><u> </u><u>1</u><u> </u><u>n</u><u>a</u><u>i</u><u>l</u><u> </u><u>a</u><u>n</u><u>d</u><u> </u><u>b</u><u>e</u><u>c</u><u>a</u><u>u</u><u>s</u><u>e</u><u> </u><u>o</u><u>f</u><u> </u><u>t</u><u>h</u><u>i</u><u>s</u><u>,</u><u> </u><u>n</u><u>a</u><u>i</u><u>l</u><u> </u><u>w</u><u>i</u><u>l</u><u>l</u><u> </u><u>p</u><u>a</u><u>s</u><u>s</u><u> </u><u>through</u><u> </u><u>j</u><u>a</u><u>n</u><u>e</u><u>'</u><u>s</u><u> </u><u>b</u><u>o</u><u>d</u><u>y</u><u>.</u>
Answer:
the answer is 1.35. Have a nice day!!
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