如何通过编程判断方程是否满足?
我们都知道这是真的:
(a+b)c = ca+b*c
但是在程序中如何判断呢?
We all know this is true:
(a+b)c = ca+b*c
But how to judge it in programme?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我们都知道这是真的:
(a+b)c = ca+b*c
但是在程序中如何判断呢?
We all know this is true:
(a+b)c = ca+b*c
But how to judge it in programme?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
一种方法是将代数表达式转换为相同的格式。
通过应用代数规则来简化左表达式和右表达式。
对于简单的方程来说,实现它并不会太难。
查看简化任何代数表达式。尝试各种表达方式以获得想法。
One way is to convert the algebraic expressions in the same format.
Simplify both left and right expressions by applying the algrebraic rules.
For simple equations it won't be too hard to implement it.
Check out Simplify any Algebraic Expression. Tryout various expressions to get an idea.