#Calculate the potential energy of the system
#Initialization of variables
z=100 #ft
m=32.1739 #lbm
#calculations
PE=m*z
#results
print '%s %.2f %s' %("Potential energy =",PE,"ft-lbm")
#calculate the absolute energy and change in mass of the mixture
#Initialization of variables
import math
m0=18.016 #lbm
gc=32.1739 #lbm ft/lbf sec^2
c=186000*5280
dU=94.4*math.pow(10,6) #ft-lbf
#calculations
U=m0/gc *c*c
dm= -dU*gc/(c*c)
#results
print '%s %.2e %s' %("Absolute energy of this mixture =",U,"ft-lbf")
print '%s' %("\n In case b, there is no change in mass")
print '%s %.2e %s' %("\n Change in mass =",dm,"lbm")
print '%s' %("The answers are a bit different due to rounding off error in textbook.")