Using α+β=1 in f(K,L)=KαLβ is assuming constant returns to scale. If you have α+β<1, you get diminishing returns.
Messing around with some python code:
from scipy.stats import normimport numpy as np
def risk_reduction(K,L,alpha,beta): print(‘risk:‘, norm.cdf(-(K**alpha)*(L**beta))) print(‘expected value:‘, 1/norm.cdf(-(K**alpha)*(L**beta))) print(‘risk (2x):‘, norm.cdf(-((2*K)**alpha)*(L**beta))) print(‘expected value (2x):‘, 1/norm.cdf(-((2*K)**alpha)*(L**beta))) print(‘ratio:’,(1/norm.cdf(-((2*K)**alpha)*(L**beta)))/(1/norm.cdf(-(K**alpha)*(L**beta)))) K,L = 0.5, 0.5alpha, beta = 0.5, 0.5risk_reduction(K,L,alpha,beta)
K,L = 0.5, 0.5alpha, beta = 0.2, 0.2risk_reduction(K,L,alpha,beta)
K,L = 0.5, 20alpha, beta = 0.2, 0.2risk_reduction(K,L,alpha,beta)
K,L = 0.5, 20alpha, beta = 0.5, 0.5risk_reduction(K,L,alpha,beta)
Current theme: default
Less Wrong (text)
Less Wrong (link)
Arrow keys: Next/previous image
Escape or click: Hide zoomed image
Space bar: Reset image size & position
Scroll to zoom in/out
(When zoomed in, drag to pan; double-click to close)
Keys shown in yellow (e.g., ]) are accesskeys, and require a browser-specific modifier key (or keys).
]
Keys shown in grey (e.g., ?) do not require any modifier keys.
?
Esc
h
f
a
m
v
c
r
q
t
u
o
,
.
/
s
n
e
;
Enter
[
\
k
i
l
=
-
0
′
1
2
3
4
5
6
7
8
9
→
↓
←
↑
Space
x
z
`
g
Using α+β=1 in f(K,L)=KαLβ is assuming constant returns to scale. If you have α+β<1, you get diminishing returns.
Messing around with some python code:
from scipy.stats import norm
import numpy as np
def risk_reduction(K,L,alpha,beta):
print(‘risk:‘, norm.cdf(-(K**alpha)*(L**beta)))
print(‘expected value:‘, 1/norm.cdf(-(K**alpha)*(L**beta)))
print(‘risk (2x):‘, norm.cdf(-((2*K)**alpha)*(L**beta)))
print(‘expected value (2x):‘, 1/norm.cdf(-((2*K)**alpha)*(L**beta)))
print(‘ratio:’,(1/norm.cdf(-((2*K)**alpha)*(L**beta)))/(1/norm.cdf(-(K**alpha)*(L**beta))))
K,L = 0.5, 0.5
alpha, beta = 0.5, 0.5
risk_reduction(K,L,alpha,beta)
K,L = 0.5, 0.5
alpha, beta = 0.2, 0.2
risk_reduction(K,L,alpha,beta)
K,L = 0.5, 20
alpha, beta = 0.2, 0.2
risk_reduction(K,L,alpha,beta)
K,L = 0.5, 20
alpha, beta = 0.5, 0.5
risk_reduction(K,L,alpha,beta)