blob: d656369f753bb31473ae9b53cfdcbf15c9e4eedd (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Chapter 2, Example 2.1, Page 29
clc
clear
//Find the inscrease in mass of the Satellite
v = 7.5*10**3
c = 2.998*10**8
//Calculating the expression using the taylor series
FMI = (1/2)*(v**2/c**2)
printf("The fractional mass increase = %e",FMI);
//Answers may vary due to round off error
|