2) acceleration = final velocity - initial velocity / time —> V-U/T
Acceleration is the change in velocity over the change in time so it can be represented by the equation a = Δv/Δt.
3) first one- F=10.5 N
second one- 4 m/s^2
third one- 1200N
We have the equation of motion
, where s is the displacement, a is the acceleration, u is the initial velocity and t is the time taken.
Here s = 300 m, u = 0 m/s, a = 9.81
Substituting

Now we have v = u+at, where v is the final velocity
Here u = 0 m/s, a= 9.81
and t = 7.82 seconds
Substituting
v = 0+9.8*7.82 = 76.68 m/s
The speed with which the penny strikes the ground = 76.68 m/s.
<h3><u>Answer</u>;</h3>
1600 years
<h3><u>Explanation</u>;</h3>
- Half life is the time taken for a radioactive isotope to decay by half of its original amount.
- We can use the formula; N = O × (1/2)^n ; where N is the new mass, O is the original amount and n is the number of half lives.
- A sample of radium-226 takes 3200 years to decay to 1/4 of its original amount.
Therefore;
<em>1/4 = 1 × (1/2)^n</em>
<em>1/4 = (1/2)^n </em>
<em>n = 2 </em>
Thus; <em>3200 years is equivalent to 2 half lives.</em>
<em>Hence, the half life of radium-226 is 1600 years</em>
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