Writing a one line programme to show that an equation equals to the answer shown.

2 次查看(过去 30 天)
How can i write a one line programme to show that sqrt(4) = 2 .
solve('sqrt(4)')
it says :
Error using solve>getEqns (line 418)
List of equations must not be empty.
Error in solve (line 226)
[eqns,vars,options] = getEqns(varargin{:});

回答(1 个)

John D'Errico
John D'Errico 2019-3-19
Homework, but you did make an effort. Does this not show what you need to show?
sqrt(4)
ans =
2
Or this?
sqrt(4) == 2
ans =
logical
1
You were asked to show that statement to be true. Not to solve for the square root. Were you to try to do that, then you should arguably get BOTH branches of the square root. In one line, perhaps this...
solve(str2sym('x^2==4'))
ans =
-2
2
But I will argue that is not what was requested.

类别

Help CenterFile Exchange 中查找有关 Assumptions 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by