Rearranging the tsiolkovsky rocket equation.

boogabooga

Bug Crusher
Joined
Apr 16, 2011
Messages
2,999
Reaction score
1
Points
0
Ill give you a hint,

the exponential function is the inverse of the natural log.
 

boogabooga

Bug Crusher
Joined
Apr 16, 2011
Messages
2,999
Reaction score
1
Points
0
No, I think it will be very, very beneficial for you to learn some algebra. :yes:

Give it a try and we will tell you if you are correct. First, rearrange terms so that the natural log term is on one side of the equals sign.
 

Artlav

Aperiodic traveller
Addon Developer
Beta Tester
Joined
Jan 7, 2008
Messages
5,790
Reaction score
780
Points
203
Location
Earth
Website
orbides.org
Preferred Pronouns
she/her
In simpler terms "the exponential function is the inverse of the natural log" means that if ln(x)=y then e^y=x.

From there on, it's fifth-grade algebra.
 

Enjo

Mostly harmless
Addon Developer
Tutorial Publisher
Donator
Joined
Nov 25, 2007
Messages
1,665
Reaction score
13
Points
38
Location
Germany
Website
www.enderspace.de
Preferred Pronouns
Can't you smell my T levels?
ln (natural logaritm), is a common name of log_base_e
 

Urwumpe

Not funny anymore
Addon Developer
Donator
Joined
Feb 6, 2008
Messages
37,627
Reaction score
2,345
Points
203
Location
Wolfsburg
Preferred Pronouns
Sire
General:

x=log_a(y) --> y = a**x

Special:

x=ld(y) --> y = 2**x
x=lb(y) --> y = 2**x
x=ln(y) --> y = e**x
x=lg(y) --> y = 10**x
x=li(y) --> y = i**x
 

PeriapsisPrograde

Wannabe addon dev
Joined
Mar 29, 2011
Messages
406
Reaction score
0
Points
16
Location
In orbit
I'll walk you through it.

deltav = g • Isp • ln(m1/m2).

[math]\Delta v = g * I_{sp} * ln(\frac{m_1}{m_2})[/math]
The tricky part of this is the ln part. I divide by g and ISP to get ln by itself.

[math]\frac{\Delta v}{g*I_{sp}} = ln(\frac{m_1}{m_2})[/math]
Here's the trick to getting rid of the ln: raise everything to the e power.

[math]e^{\frac{\Delta v}{g*I_{sp}}} = \frac{m_1}{m_2}[/math]
From there it is indeed simple algebra to solve for m_2

[math]\frac{e^{\frac{\Delta v}{g*I_{sp}}}}{m_1} = \frac{1}{m_2}[/math]
[math]\frac{m_1}{e^{\frac{\Delta v}{g*I_{sp}}}} = m_2[/math]
And there it is solved for m_2
 
Last edited:

SolarLiner

It's necessary, TARS.
Addon Developer
Joined
Jun 14, 2010
Messages
1,847
Reaction score
2
Points
0
Location
404 ROAD NOT FOUND
[math]\frac{m_1}{e^{\frac{\Delta v}{g*I_{sp}}}} = m_2[/math]
And there it is solved for m_2

I'm glad I *still* have my maths before school returns ! I got to the same conclusion ^^
When entered "coding style", it should be: m1/(e^(dV/(g*isp))) = m2.

Tried to be a little more useful than a simple "I'm glad I did it" answer :tiphat:
 
Top