B
B
Bengilson2015-01-29 09:28:18
Programming
Bengilson, 2015-01-29 09:28:18

How is the result achieved?

Good day, I recently needed to raise the formula to the 3rd power, I decided to look for interesting options, I came across this formula: exp( power * ln(formula) ) , please tell me how such a result is achieved?)

Answer the question

In order to leave comments, you need to log in

2 answer(s)
E
Ext4, 2015-01-29
@Bengilson

Very simple actually.
exp( degree * ln(formula) )
First, by the property of degrees, we take the degree out of brackets:
(exp(ln(formula)) ^ degree
Then, by another property, we
achieve a simplification of the expression:
(formula) ^ degree
I recommend studying the properties of logarithms .

O
OnYourLips, 2015-01-29
@OnYourLips

exp(ln(X)) = X
exp(a * ln(X)) = X ^ a

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question