Answer:
The code is written in python in the explanation section below
Explanation:
a_feet = int(input("Input the feet of the first fabric: "))
a_inches = int(input("input the size in inches for the first piece of fabric: "))
b_feet = int(input("input the size in Feet for the second piece of fabric: "))
b_inches = int(input("Enter the size in Inches for the second piece of fabric: "))
sum_inches = a_inches + b_inches
inches_to_feet = sum_inches // 12
rem_from_div = sum_inches % 12
sum_feet = a_feet + b_feet + inches_to_feet
print("Feet: {} Inches: {}".format(sum_feet, rem_from_div))
C.energy
The law of conservation of energy says that energy can neither be created nor destroyed.
Velocity is displacement/time
(Displacement is the overall change in distance)
So you’ll want to divide 200 by 25, which should give you:
8 m/s
Answer:
Time = 6 years
Explanation:
First, we will calculate the no. of half life periods required to reduce the mass of Protactinium to the given value:

where,
n = no. of half-life periods = ?
m = initial mass = 86.3 g
m' = remaining mass = 10.8 g
Therefore,

Since the bases are the same. Therefore equating powers:
n = 3
Now we calculate the time:

<u>Time = 6 years</u>