MrHen comments on Bizarre Illusions - Less Wrong

11 Post author: MrHen 27 January 2010 06:25PM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (305)

You are viewing a single comment's thread. Show more comments above.

Comment author: Sniffnoy 28 January 2010 01:43:25AM *  14 points [-]

I think you're really failing to grasp the content of the unique factorization theorem here. Firstly we don't think about factored numbers as products of primes up to permutation, we think of them as products of distinct prime powers (up to permutation, I suppose - but it's probably better here to just take a commutative viewpoint and not regard "up to permutation" as worth specifying). But more importantly, you need to take a multiary view of multiplication here, not a binary one. 1 is the empty product, so in particular, it is the product of no primes, or the product of each prime to the 0th power. That is its unique prime factorization. To take 1 as a prime would be like having bases for vector spaces include 0. Almost exactly like it - if we take the Z-module of positive rationals under multiplication, the set of primes forms a free basis; 1 is the zero element.

Comment author: MrHen 28 January 2010 04:58:05AM *  0 points [-]

For some reason, I never imagined factors this way.

18 = 3^2 * 2^1
97,020 = 2^2 * 3^2 * 5 * 7^2 * 11

I suppose I have seen them printed out that way, but the deeper structure there never clicked. Cool.

Comment author: ciphergoth 28 January 2010 08:27:20AM *  1 point [-]

As it happens I'm partway through "An Introduction to the Theory of Numbers" by Niven, Zuckerman, and Montgomery at the moment. Lots of problems are incredibly easy to solve given this structure. The example that springs to mind is the very straightforward proof why the combinatorial formula n! / (r! (n-r)!) always gives you an integer.

Update: Well having been scored up I feel like I should give a hint on the actual proof: for any prime p and any n, the greatest power of p that divides n is

\sigma_{i=1}^{\infty} floor( \over{n}{p^i} )

and for any real numbers a, b, floor(a + b) >= floor(a) + floor(b).

Oh for real TeX markup!

Comment author: MrHen 28 January 2010 05:12:39PM 0 points [-]

Do you recommend the book? If I were interested in the subject, is this good to pick up or can you think of a better option?

Comment author: ciphergoth 28 January 2010 06:10:59PM 0 points [-]

I'm enjoying it, but it touches on abstract algebra as an alternative approach rather than leaning on it for everything; I'd kind of prefer the latter.

Comment author: MrHen 28 January 2010 06:40:17PM *  1 point [-]

You may be a good person to ask this question:

I was wondering if there was a function f(x, y, z) so that x and z represent the left and right sides of common mathematic operators and y represents the level of operation. So f(1, 2, 4) would be 1 + 4 and f(2, 2, 4) would be 2 * 4. Better versions of f(x, y, z) would have fewer end cases hardcoded into it.

The reason behind this is to handle operator levels greater than addition, multiplication, and exponents. The casual analysis from my grade school and undergrad level math shows the pattern that multiplication is repeated addition and exponents are repeated multiplication.

My quick attempts at coming up with such a function are spiraling into greater and greater complexities. I figured someone else has to have thought about this. Do you know of a place I can start reading up on ideas similar to this? Is what I am doing even plausible?

Quick thoughts based on me playing around:

  • Addition may be level 0, not level 1
  • The sequences never really look exactly like multiplication tables, but the patterns are similar enough to appease me
  • Ideally, everything can be reduced to the simple concept of X + 1 so as to walk along the number line
  • In practical terms, I have no idea how to express "negative" levels. Division and roots are unapproachable at this point in my playing around.
Comment author: Blueberry 28 January 2010 06:49:26PM *  4 points [-]
Comment author: MrHen 28 January 2010 06:59:25PM *  0 points [-]

Cool, thanks. It seems like one of my first tries was producing numbers similar to the Ackermann function. Knuth's arrow notation essentially takes over after multiplication. But those two articles will give me enough to read to keep moving on. :)

Do you know of any that go the other way into smaller and smaller numbers?

EDIT: I found the right subject name through links on your links. It is called hyperoperation.

Comment author: Blueberry 28 January 2010 07:00:22PM *  1 point [-]

1 / Ackermann function.

Comment author: MrHen 28 January 2010 07:06:42PM 0 points [-]

Sure, that works, but it isn't exactly what I am looking for. Is it possible to express the division operator in a manner similar to how multiplication can be expressed using addition? My instinct is telling me probably not.

Comment author: pdf23ds 28 January 2010 06:55:50PM *  1 point [-]

Hyper operators. You can represent even bigger numbers with Conway chained arrow notation. Eliezer's 3^^^^3 is a form of hyper operator notation, where ^ is exponentiation, ^^ is tetration, ^^^ is pentation, etc.

If you've ever looked into really big numbers, you'll find info about Ackermann's function, which is trivially convertable to hyper notation. There's also Busy Beaver numbers, which grow faster than any computable function.

Comment author: MrHen 28 January 2010 07:07:33PM 0 points [-]

Yes, this is exactly what I was looking for. Thank you.