분배법칙,distributivity

distributivity 분배성, distributive property 분배 성질, distributive law 분배 법칙
분배법칙, 배분법칙

See also 체,field

a * (b + c) = (a*b) + (a*c)는 성립하지만
a + (b * c) = (a+b) * (a+c)는 아님!
But..
불_논리,Boolean_logic에서 and와 or은 서로 분배법칙을 만족? CHK
a or (b and c) == (a or b) and (a or c)
a and (b or c) == (a and b) or (a and c)

left distributive vs. right distributive

왼쪽 분배 vs 오른쪽 분배?

left distributive:
z·(x + y) = z·x + z·y
right distributive:
(x + y)·z = x·z + y·z

다를 수도 있다, chk. 정확히 언제? 가환성(curr 교환법칙,commutativity)이 없을 때?
... Ggl:left distributive right distributive

Σ의 (이른바) '분배법칙'?

$\sum_{i}(pa_i+qb_i)=p\sum_{i}a_i+q\sum_{i}b_i$
이것은 확률변수,random_variable의 평균, 분산 등을 계산할 때 쓰임

REL

관련:
이항연산,binary_operation
distributivity는 이항연산 한 가지에 대한 연산의 성질인 교환성/결합성(curr. pages 교환법칙,commutativity, 결합법칙,associativity)과 달리 이항연산,binary_operation 두 가지에 대한? chk
그리고 그 둘의 순서가 중요 - 맨 위에 쓴 바와 같이.