상수,constant

물리상수,physical_constant

플랑크_상수,Planck_constant h
볼츠만_상수,Boltzmann_constant kB
진공의 투자율,permeability µ0
진공의 유전율,permittivity ε0
각 자기상수와 전기상수?
유전상수,dielectric_constant κ
광속,speed_of_light c
쿨롱 상수 k = 1/(4πε0) - 쿨롱_법칙,Coulomb_s_law 참조
전자,electron의 전하량과 질량, 비전하,specific_charge
슈테판-볼츠만 상수 σ
뤼드베리,Rydberg 상수 R
중력 상수(gravitational constant) or 만유인력상수 G = 6.7×10-11 m3kg-1s-2
미세구조상수 fine-structure_constant α - writing


Sub: 무차원물리상수 ? rel 무차원량 WpKo:무차원량 Ggl:무차원량


화학 상수?

(사실 물리상수와 화학상수를 완벽히 나눌 수는 없음. 물리학,physics화학,chemistry이분,bipartition할 수 없으므로. merge?)
아보가드로수,Avogadro_constant NA
기체상수,gas_constant R
볼츠만_상수,Boltzmann_constant kB

이름은 상수인데 온도의 영향을 받는 것 (온도에 따라 달라짐)
속도상수,rate_constant k
평형상수,equilibrium_constant K

논리학의 상수

논리상수,logical_constant - curr at RR 논리상수,logical_constant
... Google:logical constant Naver:logical constant

수학 상수 mathematical constant


Basel problem
$\frac{\pi^2}6=1+\frac14+\frac19+\frac1{16}+\frac1{25}+\cdots$
https://www.youtube.com/watch?v=d-o3eB9sfls (Why is pi here? And why is it squared? A geometric answer to the Basel problem: 3Blue1Brown)
$\frac{\pi}4=1-\frac13+\frac15-\frac17+\frac19-\frac1{11}+\cdots$

Why π is in the normal distribution (3Blue1Brown)
https://www.youtube.com/watch?v=cy8r7WSuT1I
// 정규분포,normal_distribution sinc_function Herschel-Maxwell_derivation ?? Google:Herschel-Maxwell Naver:Herschel-Maxwell

그러고보니 sinc_function에도 이 수가


Misc: 적분상수 constant of integration C




비교:
(수학에서도) 반대의 개념인 변수,variable
계수,coefficient
source_code, PL syntax 에선
리터럴,literal상수와 상당히 비슷한 의미인데, 저건 수,number 뿐만 아니고 문자열,string등의 다양한 불변 값,value. tbw.
rel. enum type - enum_type, enumerated_type, 열거,enumeration
rel. immutable_type
rel. magic_number
(PL에서도) 변수,variable와 대비됨
이건 ... PL에 따라 다르기도 하고, mutable_type과 variable이 항상 일치하는 건 아니라 짧게 서술하는 건 불가능하지만 ...anyway.
많은 언어에 const가 있다
C++에 const, constexpr 가 있다
(작성에 참조, del) https://wiki.freepascal.org/Constant
rel. assembly_language 쪽에선 '직접 executable_code/machine_code에 지정된 값이라서, 메모리,memory에서 불러오지 않고 "즉시" 처리 할 수 있으므로?'(chk) 'immediate'라는 표현이 있다. 즉치 immediate_value. (다만 메모리 어딘가에 저장되어 참조되는 상수 말고 기계어/어셈블리어 코드에 직접 명시된(hardcoded) 상수의 경우.)

constant_folding = constant_propagation
{

MKLINK
sparse_conditional_constant_propagation (SCCP) { WpEn:Sparse_conditional_constant_propagation }




arity와 operation(+ operator + function)의 관계:
Constant는 arity 0인 연산,operation - 즉 nullary , (= nullary_operation ?).
FP(functional_programming) 환경 밖에서는 argument 없는 함수가 일정하지 않을 수도 있다(side_effect s 때문에). 그런 함수는 어떤 숨은 입력(hidden input)이 있을 수 있다(전역변수,global_variable나 시스템의 상태(time, free memory, etc.)같은 것들.)[1]
operation 대신 같은 개념인 function(함수,function 펑션,function)에도 마찬가지로 적용되는 얘기. 수학이 아닌 컴퓨팅 환경이라도 pure FP 환경이라면 argument 를 받지 않는(0개 받는) 함수는 constant.
//(trivial) operation에 적용되는 것이므로 연산자,operator > nullary_operator 에도.
MKLINK pure_function