Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed "log(X) with X ~ loguniform" plot domain #59

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

lklaszlokovacs
Copy link

ugly proof:

loguniform pdf:
x: [0.001, 1000]
pdf = 1/(x*ln(1000/0.001))

loguniform cdf:
x: [0.001, 1000]
cdf value set: [0, 1]
cdf = ln(x)/ln(1000/0.001) - ln(0.001)/ln(1000/0.001)

inv(cdf):
x: [0,1]
inv(cdf) value set: [0.001, 1000]
inv(cdf) = 0.001 * (1000/0.001)^x

ln(inv(cdf)):
x: [0, 1]
ln(inv(cdf)) value set: [ln(0.001), ln(1000)]
ln(inv(cdf)) = ln(0.001 * (1000/0.001)^x)

inv(ln(inv(cdf))):
x: [ln(0.001), ln(1000)]
inv(ln(inv(cdf))) value set: [0, 1]
inv(ln(inv(cdf))) = (3*ln(10) + x) / ln(1000/0.001)

derivative of inv(ln(inv(cdf))):
x: [ln(0.001), ln(1000)]
derivative of inv(ln(inv(cdf))) = 1/ln(1000/0.001) = 0.07238241365054197127518815315277

(ln(1000) - ln(0.001)) * 0.07238241365054197127518815315277 = 1

-------
ugly proof:
------

loguniform pdf:
x: [0.001, 1000]
pdf = 1/(x*ln(1000/0.001))

loguniform cdf:
x: [0.001, 1000]
cdf value set: [0, 1]
cdf = ln(x)/ln(1000/0.001) - ln(0.001)/ln(1000/0.001)

inv(cdf):
x: [0,1]
inv(cdf) value set: [0.001, 1000]
inv(cdf) = 0.001 * (1000/0.001)^x

ln(inv(cdf)):
x: [0, 1]
ln(inv(cdf)) value set: [ln(0.001), ln(1000)]
ln(inv(cdf)) = ln(0.001 * (1000/0.001)^x)

inv(ln(inv(cdf))):
x: [ln(0.001), ln(1000)]
inv(ln(inv(cdf))) value set: [0, 1]
inv(ln(inv(cdf))) = (3*ln(10) + x) / ln(1000/0.001)

derivative of inv(ln(inv(cdf))):
x: [ln(0.001), ln(1000)]
derivative of inv(ln(inv(cdf))) = 1/ln(1000/0.001) = 0.07238241365054197127518815315277

(ln(1000) - ln(0.001)) * 0.07238241365054197127518815315277 = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants