• 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.

Simple math (log) problem

jinduy

Diamond Member
my math is a bit fuzzy....but can someone tell me what X is, where


log(n) * X = n ?
basically i want to know how to remove the log and turn it into just n.

thanks in advance.
 
Originally posted by: jinduy
let's say we're talking about log base 10...would this hold then

log z = 588

z = 10^588


?

yep. here's another example

10^x = 72
x log(10) = log(72)
Since log10 = 1
x = log(72)
x = 1.857332496

Also:
log(n) * X = n
Actually the same as X log(n) = n;
Try to isolate the log by dividing by X;
log(n) = n/x
raise to the 10th power
n = 10 ^ (n/x)

Thats assuming the problem always evaluates to true.
 
Back
Top