J jinduy Diamond Member Jan 24, 2002 4,781 1 81 Jan 9, 2003 #1 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.
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.
silverpig Lifer Jul 29, 2001 27,703 12 81 Jan 9, 2003 #2 10^[log(n)] = n That should give you a start...
silverpig Lifer Jul 29, 2001 27,703 12 81 Jan 9, 2003 #5 You COULD be lame, divide by log(n) and be left with X = n/log(n)
A Atlantean Diamond Member May 2, 2001 5,296 1 0 Jan 9, 2003 #6 n/m no idea, I was doing some calc thing for it
J jinduy Diamond Member Jan 24, 2002 4,781 1 81 Jan 9, 2003 #7 let's say we're talking about log base 10...would this hold then log z = 588 z = 10^588 ?
B BigJ Lifer Nov 18, 2001 21,330 1 81 Jan 9, 2003 #8 Originally posted by: jinduy let's say we're talking about log base 10...would this hold then log z = 588 z = 10^588 ? Click to expand... 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.
Originally posted by: jinduy let's say we're talking about log base 10...would this hold then log z = 588 z = 10^588 ? Click to expand... 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.
J jinduy Diamond Member Jan 24, 2002 4,781 1 81 Jan 9, 2003 #11 okay im on the last problem....can someone hint me how to solve n*log(n) = 10000 ? base 2