Hello, On Sat, Nov 20, 2010 at 7:57 AM, pevzi <[email protected]> wrote: > Thank you for your reply. > But so is there any way to check if the expressions are equivalent?
You could do this: sage: a = (x/(2*sqrt(x+1)) + 1/(2*sqrt(x+1)*(sqrt(x+1)+1))) sage: b = ((x*(sqrt(x+1)+1)+1)/(2*sqrt(x+1)*(sqrt(x+1)+1))) sage: bool(a==b) True --Mike -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org
