Re: minmum of a function
- To: mathgroup at smc.vnet.net
- Subject: [mg75367] Re: minmum of a function
- From: Peter Pein <petsie at dordos.net>
- Date: Fri, 27 Apr 2007 05:19:43 -0400 (EDT)
- References: <f014ar$8qr$1@smc.vnet.net> <f0ejkm$pad$1@smc.vnet.net> <f0pkhj$20j$1@smc.vnet.net>
Peter Pein schrieb:
...
> In[3]:=
> redu = Module[{t1 = Simplify[D[targetToMaximize, p]], t2},
> t2 = Simplify[D[t1, p]];
> Assuming[0 < a < 1, FullSimplify[
> Reduce[t1 == 0 > t2], p, Reals]]]]
...
I edited a call to Inequality by hand and forgot to delete the closing
bracket. The last line should start:
Reduce[t1 == 0 > t2 (* no bracket *), p...