1
0
Fork 0

math: add algebraic properties

This commit is contained in:
Kim, Jimin 2025-05-20 12:29:37 +09:00
parent 9ee35e84fd
commit 84afad7a31
Signed by: pomp
GPG key ID: D3932F82A0667A3B

View file

@ -19,6 +19,35 @@
= Algebra
== Algebraic Properties
#table(
columns: (auto, 1fr, 1fr, 1fr, 1fr),
align: (right, center, center, center, center),
table.header([*Property*], [×], /**/ [+], /**/ [-], /**/ [÷]),
/*********/ [Commutative / 교환법칙], [], /**/ [], /**/ [ ], /**/ [ ],
/*********/ [Associative / 결합법칙], [], /**/ [], /**/ [ ], /**/ [ ],
/********/ [Distributive / 분배법칙], [], /**/ [ ], /**/ [ ], /**/ [ ],
)
#linebreak()
=== Commutative Property / 교환법칙
$ a+b=b+a $
$ ab=ba $
=== Associative Property / 결합법칙
$ (a+b)+c=a+(b+c) $
$ (ab)c=a(bc) $
=== Distributive Property / 분배법칙
$ a(b+c)=a b+a c $
#pagebreak()
== Types of Numbers
- $CC$ - Complex / 복소수 ($bold(a + b i)$)