• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Trying to isolate a variable and keep getting stuck

Dari

Lifer
I have an equation: exp(-a)*exp(-b) +c = exp(-d)

I'm trying to isolate a variable but I'm not sure what to do with the left side when I take the natural log of both sides. that c is bothering me me. Any ideas?
 
Originally posted by: Dari
I have an equation: exp(-a)*exp(-b) +c = exp(-d)

I'm trying to isolate a variable but I'm not sure what to do with the left side when I take the natural log of both sides. that c is bothering me me. Any ideas?

What variable are you trying to isolate?

The natural log of sums is just that ... the natural log of sums. You can't simplify it down any more.
 
Originally posted by: chuckywang
Originally posted by: Dari
I have an equation: exp(-a)*exp(-b) +c = exp(-d)

I'm trying to isolate a variable but I'm not sure what to do with the left side when I take the natural log of both sides. that c is bothering me me. Any ideas?

What variable are you trying to isolate?

The natural log of sums is just that ... the natural log of sums. You can't simplify it down any more.

the variable is in a,b and d. are you saying that I cannot simply: ln(exp(-a)*exp(-b) +c) = ln(exp(-d)) any further?
 
Have you used these identities?

exp(a)*exp(b) = exp(a+b)
exp(a)/exp(b) = exp(a-b)

With that you should be able to rearrange the equation into:

exp(k*x) = blah

And then you can do the natural log and solve.
 
Originally posted by: TuxDave
Have you used these identities?

exp(a)*exp(b) = exp(a+b)
exp(a)/exp(b) = exp(a-b)

With that you should be able to rearrange the equation into:

exp(k*x) = blah

And then you can do the natural log and solve.

yeah, I've done all that. Anyone know how to solve a single equation in matlab?
 
Back
Top