Now suppose I have real values a1, .., an
.
I want to maximize L(p)
on the interval [0..1]
:
L(p) = p Π_j (1-p^aj)
If a1 = .. = an = 1
the solution is p = 1/(n+1)
, but otherwise?
How would I do that in Prolog, with or without gradient?
P.S.: I can use CLP(BNR) for SWI-Prolog like this:
?- current_prolog_flag(clpBNR_default_precision,P).
P = 6.
?- P::real(0,1), time(global_maximum(P*(1-P**2)*(1-P**3), Q)), midpoint(P, R).
% 2,632,164 inferences, 0.844 CPU in 0.881 seconds (96% CPU, 3119602 Lips)
R = 0.5749041546976932,
P::real(0.48290488838067125, 0.666903421014715),
Q:: 0.328600... .
But the result R = 0.5749041546976932
is not near the maximum.
Wolfram Alpha gives me P = 0.484755..
and Q = 0.3268..
. So
since Q is nevertheless corrrect, maybe there is a bug in CLP(BNR),
i.e. some problem in returning the result of the maximization?