2022-09-04 13:21:07 +00:00
|
|
|
open FunctionRegistry_Core
|
|
|
|
open FunctionRegistry_Helpers
|
|
|
|
|
|
|
|
let nameSpace = "Danger"
|
|
|
|
let requiresNamespace = true
|
|
|
|
|
2022-09-04 15:12:18 +00:00
|
|
|
module NumberToNumber = {
|
|
|
|
let make = (name, fn) =>
|
|
|
|
FnDefinition.make(
|
|
|
|
~name,
|
|
|
|
~inputs=[FRTypeNumber],
|
|
|
|
~run=(_, inputs, _, _) => {
|
|
|
|
inputs
|
|
|
|
->getOrError(0)
|
|
|
|
->E.R.bind(Prepare.oneNumber)
|
|
|
|
->E.R2.fmap(fn)
|
|
|
|
->E.R2.fmap(Wrappers.evNumber)
|
|
|
|
},
|
|
|
|
(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-09-04 13:21:07 +00:00
|
|
|
module TwoNumbersToNumber = {
|
|
|
|
let make = (name, fn) =>
|
|
|
|
FnDefinition.make(
|
|
|
|
~name,
|
|
|
|
~inputs=[FRTypeNumber, FRTypeNumber],
|
|
|
|
~run=(_, inputs, _, _) => {
|
|
|
|
inputs->Prepare.ToValueTuple.twoNumbers->E.R2.fmap(fn)->E.R2.fmap(Wrappers.evNumber)
|
|
|
|
},
|
|
|
|
(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
module ThreeNumbersToNumber = {
|
|
|
|
let make = (name, fn) =>
|
|
|
|
FnDefinition.make(
|
|
|
|
~name,
|
|
|
|
~inputs=[FRTypeNumber, FRTypeNumber, FRTypeNumber],
|
|
|
|
~run=(_, inputs, _, _) => {
|
|
|
|
inputs->Prepare.ToValueTuple.threeNumbers->E.R2.fmap(fn)->E.R2.fmap(Wrappers.evNumber)
|
|
|
|
},
|
|
|
|
(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-09-04 16:53:57 +00:00
|
|
|
module FunctionToNumberZero = {
|
2022-09-05 07:37:48 +00:00
|
|
|
let make = (name, _) =>
|
2022-09-04 16:53:57 +00:00
|
|
|
FnDefinition.make(
|
|
|
|
~name,
|
|
|
|
~inputs=[FRTypeLambda],
|
2022-09-05 07:37:48 +00:00
|
|
|
~run=(_, _, _, _) => {
|
2022-09-04 16:53:57 +00:00
|
|
|
Ok(0.0)->E.R2.fmap(Wrappers.evNumber)
|
|
|
|
},
|
|
|
|
(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-09-04 15:12:18 +00:00
|
|
|
module Internals = {
|
2022-09-05 07:08:53 +00:00
|
|
|
// Probability functions
|
2022-09-04 15:12:18 +00:00
|
|
|
let factorial = Stdlib.Math.factorial
|
|
|
|
let choose = ((n, k)) => factorial(n) /. (factorial(n -. k) *. factorial(k))
|
|
|
|
let pow = (base, exp) => Js.Math.pow_float(~base, ~exp)
|
|
|
|
let binomial = ((n, k, p)) => choose((n, k)) *. pow(p, k) *. pow(1.0 -. p, n -. k)
|
2022-09-05 07:08:53 +00:00
|
|
|
// Integral helper functions
|
2022-09-04 18:26:57 +00:00
|
|
|
let applyFunctionAtPoint = (
|
|
|
|
aLambda,
|
|
|
|
internalNumber: internalExpressionValue,
|
|
|
|
environment,
|
|
|
|
reducer,
|
|
|
|
): result<ReducerInterface_InternalExpressionValue.t, Reducer_ErrorValue.errorValue> => {
|
2022-09-04 17:22:12 +00:00
|
|
|
let x = internalNumber
|
2022-09-04 18:26:57 +00:00
|
|
|
let result = Reducer_Expression_Lambda.doLambdaCall(aLambda, list{x}, environment, reducer)
|
2022-09-04 17:22:12 +00:00
|
|
|
result
|
2022-09-04 16:53:57 +00:00
|
|
|
}
|
2022-09-04 17:29:22 +00:00
|
|
|
let internalZero = ReducerInterface_InternalExpressionValue.IEvNumber(0.0)
|
2022-09-04 18:26:57 +00:00
|
|
|
let applyFunctionAtZero = (aLambda, environment, reducer) =>
|
|
|
|
applyFunctionAtPoint(aLambda, internalZero, environment, reducer)
|
2022-09-05 07:08:53 +00:00
|
|
|
@dead let applyFunctionAtFloat = (aLambda, point, environment, reducer) =>
|
2022-09-05 07:37:48 +00:00
|
|
|
applyFunctionAtPoint(aLambda, ReducerInterface_InternalExpressionValue.IEvNumber(point), environment, reducer)
|
2022-09-05 07:08:53 +00:00
|
|
|
// simplest integral function
|
2022-09-04 20:45:55 +00:00
|
|
|
let integrateFunctionBetweenWithIncrement = (
|
|
|
|
aLambda,
|
|
|
|
min: float,
|
|
|
|
max: float,
|
|
|
|
increment: float,
|
|
|
|
environment,
|
|
|
|
reducer,
|
|
|
|
) => {
|
|
|
|
let applyFunctionAtFloatToFloatOption = (point: float) => {
|
|
|
|
let pointAsInternalExpression = ReducerInterface_InternalExpressionValue.IEvNumber(point)
|
|
|
|
let resultAsInternalExpression = Reducer_Expression_Lambda.doLambdaCall(
|
|
|
|
aLambda,
|
|
|
|
list{pointAsInternalExpression},
|
|
|
|
environment,
|
|
|
|
reducer,
|
|
|
|
)
|
|
|
|
let result = switch resultAsInternalExpression {
|
|
|
|
| Ok(IEvNumber(x)) => Ok(x)
|
|
|
|
| Error(_) => Error("Integration error in Danger.integrate")
|
|
|
|
| _ => Error("Integration error in Danger.integrate")
|
|
|
|
}
|
|
|
|
result
|
|
|
|
}
|
|
|
|
let xsLength = Js.Math.ceil((max -. min) /. increment)
|
2022-09-05 07:37:48 +00:00
|
|
|
let xs = Belt.Array.makeBy(xsLength + 1, i => min +. Belt_Float.fromInt(i) *. increment)
|
|
|
|
// makeBy goes from 0 to (n-1): <https://rescript-lang.org/docs/manual/latest/api/belt/array#makeby>
|
2022-09-04 20:45:55 +00:00
|
|
|
let ysOptions = Belt.Array.map(xs, x => applyFunctionAtFloatToFloatOption(x))
|
|
|
|
let okYs = E.A.R.filterOk(ysOptions)
|
|
|
|
let result = switch E.A.length(ysOptions) == E.A.length(okYs) {
|
|
|
|
| true => {
|
|
|
|
let numericIntermediate = okYs->E.A.reduce(0.0, (a, b) => a +. b)
|
|
|
|
let numericIntermediate2 = numericIntermediate *. increment
|
|
|
|
let resultWrapped =
|
|
|
|
numericIntermediate2->ReducerInterface_InternalExpressionValue.IEvNumber->Ok
|
|
|
|
resultWrapped
|
|
|
|
}
|
|
|
|
| false => Error("Integration error in Danger.integrate")
|
|
|
|
}
|
|
|
|
result
|
2022-09-04 18:07:10 +00:00
|
|
|
}
|
2022-09-05 07:08:53 +00:00
|
|
|
// slightly better integrate function
|
|
|
|
let integrateFunctionBetweenWithNumIntervals = (
|
|
|
|
aLambda,
|
|
|
|
min: float,
|
|
|
|
max: float,
|
|
|
|
numIntervals: float, // cast as int?
|
|
|
|
environment,
|
|
|
|
reducer,
|
|
|
|
) => {
|
|
|
|
let applyFunctionAtFloatToFloatOption = (point: float) => {
|
|
|
|
let pointAsInternalExpression = ReducerInterface_InternalExpressionValue.IEvNumber(point)
|
|
|
|
let resultAsInternalExpression = Reducer_Expression_Lambda.doLambdaCall(
|
|
|
|
aLambda,
|
|
|
|
list{pointAsInternalExpression},
|
|
|
|
environment,
|
|
|
|
reducer,
|
|
|
|
)
|
|
|
|
let result = switch resultAsInternalExpression {
|
|
|
|
| Ok(IEvNumber(x)) => Ok(x)
|
|
|
|
| Error(_) => Error("Integration error in Danger.integrate")
|
|
|
|
| _ => Error("Integration error in Danger.integrate")
|
|
|
|
}
|
|
|
|
result
|
|
|
|
}
|
|
|
|
let xsLengthCandidate = Belt.Float.toInt(Js.Math.round(numIntervals))
|
|
|
|
let xsLength = xsLengthCandidate > 0 ? xsLengthCandidate : 1
|
|
|
|
let increment = (max -. min) /. Belt.Int.toFloat(xsLength)
|
2022-09-05 07:37:48 +00:00
|
|
|
let xs = Belt.Array.makeBy(xsLength +1, i => min +. Belt_Float.fromInt(i) *. increment)
|
|
|
|
// makeBy goes from 0 to (n-1): <https://rescript-lang.org/docs/manual/latest/api/belt/array#makeby>
|
2022-09-05 07:08:53 +00:00
|
|
|
let ysOptions = Belt.Array.map(xs, x => applyFunctionAtFloatToFloatOption(x))
|
|
|
|
let okYs = E.A.R.filterOk(ysOptions)
|
|
|
|
let result = switch E.A.length(ysOptions) == E.A.length(okYs) {
|
|
|
|
| true => {
|
|
|
|
let numericIntermediate = okYs->E.A.reduce(0.0, (a, b) => a +. b)
|
|
|
|
let numericIntermediate2 = numericIntermediate *. increment
|
|
|
|
let resultWrapped =
|
|
|
|
numericIntermediate2->ReducerInterface_InternalExpressionValue.IEvNumber->Ok
|
|
|
|
resultWrapped
|
|
|
|
}
|
|
|
|
| false => Error("Integration error in Danger.integrate")
|
|
|
|
}
|
|
|
|
result
|
|
|
|
}
|
2022-09-04 20:45:55 +00:00
|
|
|
@dead let getDiminishingMarginalReturnsEquilibrium = "To do"
|
2022-09-04 15:12:18 +00:00
|
|
|
}
|
|
|
|
|
2022-09-04 13:21:07 +00:00
|
|
|
let library = [
|
|
|
|
Function.make(
|
|
|
|
~name="laplace",
|
|
|
|
~nameSpace,
|
|
|
|
~requiresNamespace,
|
|
|
|
~output=EvtNumber,
|
2022-09-04 15:12:18 +00:00
|
|
|
~examples=[`Danger.laplace(1, 20)`],
|
2022-09-04 13:21:07 +00:00
|
|
|
~definitions=[
|
|
|
|
TwoNumbersToNumber.make("laplace", ((successes, trials)) =>
|
2022-09-04 15:12:18 +00:00
|
|
|
(successes +. 1.0) /. (trials +. 2.0)
|
2022-09-04 13:21:07 +00:00
|
|
|
),
|
|
|
|
],
|
|
|
|
(),
|
|
|
|
),
|
2022-09-04 15:12:18 +00:00
|
|
|
Function.make(
|
|
|
|
~name="factorial",
|
|
|
|
~nameSpace,
|
|
|
|
~requiresNamespace,
|
|
|
|
~output=EvtNumber,
|
|
|
|
~examples=[`Danger.factorial(20)`],
|
|
|
|
~definitions=[NumberToNumber.make("factorial", Internals.factorial)],
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
Function.make(
|
|
|
|
~name="choose",
|
|
|
|
~nameSpace,
|
|
|
|
~requiresNamespace,
|
|
|
|
~output=EvtNumber,
|
|
|
|
~examples=[`Danger.choose(1, 20)`],
|
|
|
|
~definitions=[TwoNumbersToNumber.make("choose", Internals.choose)],
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
Function.make(
|
|
|
|
~name="binomial",
|
|
|
|
~nameSpace,
|
|
|
|
~requiresNamespace,
|
|
|
|
~output=EvtNumber,
|
|
|
|
~examples=[`Danger.binomial(1, 20, 0.5)`],
|
|
|
|
~definitions=[ThreeNumbersToNumber.make("binomial", Internals.binomial)],
|
|
|
|
(),
|
|
|
|
),
|
2022-09-05 07:08:53 +00:00
|
|
|
// Helper functions building up to the integral
|
2022-09-04 16:53:57 +00:00
|
|
|
Function.make(
|
|
|
|
~name="functionToZero",
|
|
|
|
~nameSpace,
|
|
|
|
~requiresNamespace,
|
|
|
|
~output=EvtNumber,
|
|
|
|
~examples=[`Danger.functionToZero({|x| x})`],
|
|
|
|
~definitions=[FunctionToNumberZero.make("functionToZero", x => x)],
|
|
|
|
(),
|
|
|
|
),
|
2022-09-04 17:29:22 +00:00
|
|
|
Function.make(
|
|
|
|
~name="applyFunctionAtZero",
|
|
|
|
~nameSpace,
|
2022-09-05 07:10:42 +00:00
|
|
|
~output=EvtNumber,
|
2022-09-04 17:29:22 +00:00
|
|
|
~requiresNamespace=false,
|
|
|
|
~examples=[`Danger.applyFunctionAtZero({|x| x+1})`],
|
|
|
|
~definitions=[
|
|
|
|
FnDefinition.make(
|
2022-09-04 18:07:10 +00:00
|
|
|
~name="applyFunctionAtZero",
|
2022-09-04 17:29:22 +00:00
|
|
|
~inputs=[FRTypeLambda],
|
2022-09-04 20:45:55 +00:00
|
|
|
~run=(inputs, _, env, reducer) => {
|
|
|
|
let result = switch inputs {
|
2022-09-04 17:29:22 +00:00
|
|
|
| [IEvLambda(aLambda)] =>
|
|
|
|
Internals.applyFunctionAtZero(aLambda, env, reducer)->E.R2.errMap(_ => "Error!")
|
|
|
|
| _ => Error(impossibleError)
|
2022-09-04 20:45:55 +00:00
|
|
|
}
|
|
|
|
result
|
|
|
|
},
|
2022-09-04 17:29:22 +00:00
|
|
|
(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
(),
|
|
|
|
),
|
2022-09-04 16:53:57 +00:00
|
|
|
Function.make(
|
2022-09-04 17:22:12 +00:00
|
|
|
~name="applyFunctionAtPoint",
|
2022-09-04 16:53:57 +00:00
|
|
|
~nameSpace,
|
2022-09-05 07:10:42 +00:00
|
|
|
~output=EvtNumber,
|
2022-09-04 16:53:57 +00:00
|
|
|
~requiresNamespace=false,
|
2022-09-04 17:22:12 +00:00
|
|
|
~examples=[`Danger.applyFunctionAtPoint({|x| x+1}, 1)`],
|
2022-09-04 16:53:57 +00:00
|
|
|
~definitions=[
|
|
|
|
FnDefinition.make(
|
2022-09-04 17:22:12 +00:00
|
|
|
~name="applyFunctionAtPoint",
|
|
|
|
~inputs=[FRTypeLambda, FRTypeNumber],
|
2022-09-04 16:53:57 +00:00
|
|
|
~run=(inputs, _, env, reducer) =>
|
|
|
|
switch inputs {
|
2022-09-04 17:22:12 +00:00
|
|
|
| [IEvLambda(aLambda), point] =>
|
|
|
|
Internals.applyFunctionAtPoint(aLambda, point, env, reducer)->E.R2.errMap(_ => "Error!")
|
2022-09-04 16:53:57 +00:00
|
|
|
| _ => Error(impossibleError)
|
|
|
|
},
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
(),
|
|
|
|
),
|
2022-09-05 07:08:53 +00:00
|
|
|
// simplest integral
|
2022-09-04 20:45:55 +00:00
|
|
|
Function.make(
|
|
|
|
~name="integrateFunctionBetweenWithIncrement",
|
|
|
|
~nameSpace,
|
2022-09-05 07:10:42 +00:00
|
|
|
~output=EvtNumber,
|
2022-09-04 20:45:55 +00:00
|
|
|
~requiresNamespace=false,
|
2022-09-05 06:41:33 +00:00
|
|
|
~examples=[`Danger.integrateFunctionBetweenWithIncrement({|x| x+1}, 1, 10, 1)`],
|
|
|
|
// should be [x^2/2 + x]1_10 = (100/2 + 10) - (1/2 + 1) = 60 - 1.5 = 58.5
|
|
|
|
// https://www.wolframalpha.com/input?i=integrate+x%2B1+from+1+to+10
|
2022-09-04 20:45:55 +00:00
|
|
|
~definitions=[
|
|
|
|
FnDefinition.make(
|
|
|
|
~name="integrateFunctionBetweenWithIncrement",
|
|
|
|
~inputs=[FRTypeLambda, FRTypeNumber, FRTypeNumber, FRTypeNumber],
|
|
|
|
~run=(inputs, _, env, reducer) => {
|
|
|
|
let result = switch inputs {
|
|
|
|
| [_, _, _, IEvNumber(0.0)] =>
|
|
|
|
Error("Integration error in Danger.integrate: Increment can't be 0.")
|
|
|
|
| [IEvLambda(aLambda), IEvNumber(min), IEvNumber(max), IEvNumber(increment)] =>
|
|
|
|
Internals.integrateFunctionBetweenWithIncrement(
|
|
|
|
aLambda,
|
|
|
|
min,
|
|
|
|
max,
|
|
|
|
increment,
|
|
|
|
env,
|
|
|
|
reducer,
|
|
|
|
)->E.R2.errMap(_ =>
|
|
|
|
"Integration error in Danger.integrate. Something went wrong along the way"
|
|
|
|
)
|
|
|
|
| _ =>
|
|
|
|
Error(
|
|
|
|
"Integration error in Danger.integrate. Remember that inputs are (function, number (min), number (max), number(increment))",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
result
|
|
|
|
},
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
(),
|
|
|
|
),
|
2022-09-05 07:08:53 +00:00
|
|
|
// Integral which is a bit more thoughtful
|
|
|
|
Function.make(
|
|
|
|
~name="integrateFunctionBetweenWithNumIntervals",
|
|
|
|
~nameSpace,
|
2022-09-05 07:10:42 +00:00
|
|
|
~output=EvtNumber,
|
2022-09-05 07:08:53 +00:00
|
|
|
~requiresNamespace=false,
|
|
|
|
~examples=[`Danger.integrateFunctionBetweenWithNumIntervals({|x| x+1}, 1, 10, 10)`],
|
|
|
|
// should be [x^2/2 + x]1_10 = (100/2 + 10) - (1/2 + 1) = 60 - 1.5 = 58.5
|
|
|
|
// https://www.wolframalpha.com/input?i=integrate+x%2B1+from+1+to+10
|
|
|
|
~definitions=[
|
|
|
|
FnDefinition.make(
|
|
|
|
~name="integrateFunctionBetweenWithNumIntervals",
|
|
|
|
~inputs=[FRTypeLambda, FRTypeNumber, FRTypeNumber, FRTypeNumber],
|
|
|
|
~run=(inputs, _, env, reducer) => {
|
|
|
|
let result = switch inputs {
|
|
|
|
| [_, _, _, IEvNumber(0.0)] =>
|
|
|
|
Error("Integration error in Danger.integrate: Increment can't be 0.")
|
|
|
|
| [IEvLambda(aLambda), IEvNumber(min), IEvNumber(max), IEvNumber(numIntervals)] =>
|
|
|
|
Internals.integrateFunctionBetweenWithNumIntervals(
|
|
|
|
aLambda,
|
|
|
|
min,
|
|
|
|
max,
|
|
|
|
numIntervals,
|
|
|
|
env,
|
|
|
|
reducer,
|
|
|
|
)->E.R2.errMap(_ =>
|
|
|
|
"Integration error in Danger.integrate. Something went wrong along the way"
|
|
|
|
)
|
|
|
|
| _ =>
|
|
|
|
Error(
|
|
|
|
"Integration error in Danger.integrate. Remember that inputs are (function, number (min), number (max), number(increment))",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
result
|
|
|
|
},
|
|
|
|
(),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
(),
|
|
|
|
),
|
2022-09-04 13:21:07 +00:00
|
|
|
]
|