math - maple cant calculate my function -
Let me start for my bad english I am trying to do some math in Mapple.
My Function
func (x) = x * e ^ (- x) -0.06064 I f (0.05) * F (0.06) & lt; 0 bn: = 0 mn: = 0.06 a: = 0.05 (evalf (subs = Lieutenant; 0 then bien: = mn;
But maple says:
This expression is not right or wrong, can not determine: (0.6000000000e-1 / e ^ 0.64692635994760e-1-0.6064e -1) * (0.5-1 / E ↑ 0.64692635994760e-1-0.6064e-1) & lt; 0
Can I do something to calculate it? The main difficulty is that the notion of maple is done in the power by the natural logarithm,
exp (-x) and do not like it, / P>
e ^ (-x)/>Note the presence of the name
ein the error message you received. There is no special meaning in the 1D maple notation input of the nameein maple.Perhaps you stuck in those calls to
evalfbecause you were trying to solve your problem withein your example floats There is enough sexual intercourse to call unnecessary calls toevalf.You may be interested in these two forms to get a real float from your formula. I leave the unnecessary
evalfcall here.Here is the
restart: Func: = x * exp (-x) - 0.06064: bn: = 0: mn: = 0.06: one: = 0.0: eval (func, x = mn) * eval (Func, x = a); 0.0002506935207funcdefined as an expression.
And here is the func defined as an operator.
restart: func: = x - & gt; X * exp (-x) -0.06064: bn: = 0: mn: = 0.06: one: = 0.0: funk (mn) * funk (a); 0.0002506935207
Comments
Post a Comment