One function is greater than other
I would like to determine the range of values for ( z ) where the following inequality holds true:
this is my trying
syms z real
assume(z > exp(1))
% Define the function
f = z – 8.02 * log(z) – (3.359 / 21.233) * log(z) * z;
sol = solve(f > 0, z, ‘ReturnConditions’, true);
vpa(sol.conditions)I would like to determine the range of values for ( z ) where the following inequality holds true:
this is my trying
syms z real
assume(z > exp(1))
% Define the function
f = z – 8.02 * log(z) – (3.359 / 21.233) * log(z) * z;
sol = solve(f > 0, z, ‘ReturnConditions’, true);
vpa(sol.conditions) I would like to determine the range of values for ( z ) where the following inequality holds true:
this is my trying
syms z real
assume(z > exp(1))
% Define the function
f = z – 8.02 * log(z) – (3.359 / 21.233) * log(z) * z;
sol = solve(f > 0, z, ‘ReturnConditions’, true);
vpa(sol.conditions) @staff MATLAB Answers — New Questions