this post was submitted on 07 Jun 2024
808 points (95.9% liked)

memes

9615 readers
5174 users here now

Community rules

1. Be civilNo trolling, bigotry or other insulting / annoying behaviour

2. No politicsThis is non-politics community. For political memes please go to !politicalmemes@lemmy.world

3. No recent repostsCheck for reposts when posting a meme, you can only repost after 1 month

4. No botsNo bots without the express approval of the mods or the admins

5. No Spam/AdsNo advertisements or spam. This is an instance rule and the only way to live.

Sister communities

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] kogasa@programming.dev 4 points 3 months ago (1 children)

One definition of the complex numbers is the set of tuples (x, y) in R^(2) with the operations of addition: (a,b) + (c,d) = (a+c, b+d) and multiplication: (a,b) * (c,d) = (ac - bd, ad + bc). Then defining i := (0,1) and identifying (x, 0) with the real number x, we can write (a,b) = a + bi.

[–] SubArcticTundra@lemmy.ml 1 points 3 months ago (1 children)

Ok, that's actually quite interesting

[–] kogasa@programming.dev 2 points 3 months ago* (last edited 3 months ago)

Yup, you'll notice the only thing distinguishing C from R^(2) is that multiplication. That one definition has extremely broad implications.

For fun, another definition is in terms of 2x2 matrices with real entries. The identity matrix

1 0
0 1

is identified with the real number 1, and the matrix

0 1
-1 0

is identified with i. Given this setup, the normal definitions of matrix addition and multiplication define the complex numbers.