等价函数但不同值 Oo
我有 2 个函数,但对于相同的输入 a=5 和 b=6 不同的值 -.- 为什么?
f1:
f2:
wolframalpha.com/input/?i=%285^2-6^2%29^3
我的 haskell 代码:
f :: Double -> Double -> Double
f a b = (((a**3)+(b**3))*((a**3)-(b**3)))+3*((a*(b**2) + (a**2)*a)*(a*(b**2) - (a**2)*a))
h :: Double -> Double -> Double
h a b = ((a+b)*(a-b))**3
I have 2 function, but for the same input a=5 und b=6 different values -.- why?
f1:
f2:
wolframalpha.com/input/?i=%285^2-6^2%29^3
my haskell code:
f :: Double -> Double -> Double
f a b = (((a**3)+(b**3))*((a**3)-(b**3)))+3*((a*(b**2) + (a**2)*a)*(a*(b**2) - (a**2)*a))
h :: Double -> Double -> Double
h a b = ((a+b)*(a-b))**3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你们的功能并不等同。将每个项展开,例如
a**6
项是不同的。Your functions aren't equivalent. Expand each out, and for example the
a**6
terms are different.