math: add algebraic properties
This commit is contained in:
parent
9ee35e84fd
commit
84afad7a31
1 changed files with 29 additions and 0 deletions
|
@ -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 $
|
||||
$ a⋅b=b⋅a $
|
||||
|
||||
=== Associative Property / 결합법칙
|
||||
|
||||
$ (a+b)+c=a+(b+c) $
|
||||
$ (a⋅b)⋅c=a⋅(b⋅c) $
|
||||
|
||||
=== Distributive Property / 분배법칙
|
||||
|
||||
$ a⋅(b+c)=a b+a c $
|
||||
|
||||
#pagebreak()
|
||||
|
||||
== Types of Numbers
|
||||
|
||||
- $CC$ - Complex / 복소수 ($bold(a + b i)$)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue