The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.
Is the 5 subscript or superscript? If its subscript, then its log base 5. If its superscript, its (log Y)^5, just like how they do with trigonometric functions.
The most likely for (log^5) is a log base 5, even though that seems pretty absurdly uncommon (I've mostly dealt with log base e, log base 10, or log base 2).
Y^2*stuff is almost certainly (Y^2)*stuff if he's following any sort of notation standard, because you always do the exponential before the multiplication.
I would guess (log^5)(Y) = (log(Y))^5 actually. Look, for instance, at equation 13 of this. Obviously it's cos, not log, but I see that notation used for exponents of the log function regularly.
I think I'm going to go with Y^(2*((log Y)^5)), since it makes the most sense in terms of figuring out an answer. I'm going to frame my answer in terms of (log^5)Y though, to see if I can get some partial credit for being ambiguous, rather than outright wrong.
It's log(y) to the fifth power. Your question asks about big-O notation, which means this is for a CS class. The base of the logarithm is irrelevant in complexity theory because you can convert to any other base via some constant factor.
So if my complexity theory chops are still any good, I'm going to say that K(Y) is O(Y^2 * logY ^5 ).
I think I'm going to go with Y^(2*((log Y)^5)), since it makes the most sense in terms of figuring out an answer. I'm going to frame my answer in terms of (log^5)Y though, to see if I can get some partial credit for being ambiguous, rather than outright wrong.
Thanks for the help, I guess this can be locked.
It's almost certainly (Y^2)*((log Y)^5) instead of Y^(2*((log Y)^5)) since exponentiation is higher in the order of operations than multiplication.
Posts
See how many books I've read so far in 2010
I would guess (log^5)(Y) = (log(Y))^5 actually. Look, for instance, at equation 13 of this. Obviously it's cos, not log, but I see that notation used for exponents of the log function regularly.
I think I'm going to go with Y^(2*((log Y)^5)), since it makes the most sense in terms of figuring out an answer. I'm going to frame my answer in terms of (log^5)Y though, to see if I can get some partial credit for being ambiguous, rather than outright wrong.
Thanks for the help, I guess this can be locked.
K(Y) = 9*K(Y/3)+(Y^2*((log^5)Y))
I like how the function(?) has itself in its definition too, unless K is a constant in there, or are you trying to isolate K?
Odd, very very odd format.
So if my complexity theory chops are still any good, I'm going to say that K(Y) is O(Y^2 * logY ^5 ).
(see here for more info: indefinite logarithms)
It's almost certainly (Y^2)*((log Y)^5) instead of Y^(2*((log Y)^5)) since exponentiation is higher in the order of operations than multiplication.