[Math] Identity (항등원) and Inverse (역원)
·
.../Math
Identity and Inverseoperation에 대해 identity(항등원) 과 inverse(역원)이 존재inverse는 없을 수도 있음.operand가 function인 경우, identity와 inverse도 function.identity (항등원)어떤 object에 대해 어떤 operation를 identity와 함께 가할시 자기 자신이 됨.자연수의 addition에서 0 이 identity의 대표적 예. inverse(역원)inverse와 해당하는 operation을 가하면, 해당 operation의 identity가 됨.실수의 multiplication에서 1이 inverse의 대표적인 예. 2024.02.26 - [.../Math] - [Math] Inverse Function: ..
[Python] Arithmetic in Python and Augmented Assigment
·
Programming
1. Precedence of Arithmetic Operations Higher ** > -(negation) > * = / = // = % > + = -(subtraction) Lower 우선순위를 기억하는 것도 중요하지만, 헷갈리면 그냥 parentheses로 묶어주면 된다. (가독성을 위해서도 이를 추천) 동시에 3+2와 같은 간단한 expression은 굳이 parentheses로 묶지 말 것. (이 경우, 복잡한 expression등과 헷갈리게 됨) 2. Unary Operator (단항 연산자) 2.1. exponentiation : ** 2의 3 제곱은 다음 2**3 으로 표시함. 2.2. negation : - 음수를 표현. (subtraction이 아닌) >>> -2 -2 >>> --2..