Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Thanks in advance! I am writing a program to check if a is true and then return True or False. I need to split it up at the equal sign and then check if the 1st item in the list is equal to the second item and vise-versa. Here is what I have so far:

def s_equation(a):
    equal=a.split("=")
share|improve this question
4  
That's....... not much. – Ignacio Vazquez-Abrams Nov 9 '10 at 15:02
homework? Give an example of the kinds of equations you want to "solve". – Andrew Jaffe Nov 9 '10 at 15:03
the algebra tag implies you need to handle variables, not just constants and operators. is this true? what kinds of operators do you need to support? – ysth Nov 9 '10 at 15:06
as many as possible. I also want multi operation – jmeyer10 Nov 9 '10 at 15:10

3 Answers

up vote 4 down vote accepted

You can use eval() to evaluate each part of the equation:

def s_equation(a):
    left, right = a.split('=')
    return eval(left) == eval(right)

Some tests:

>>> s_equation('1+1+1=3')
True
>>> s_equation('2*2=8')
False
share|improve this answer
left, right = a.split("=")
assert left == right

You're gonna need to give us more details than that if you want a useful answer. Are you trying to write a full computer algebra system (like e.g. Mathematica)? That's a biiiiig project and has already been done several times. Consider using something like Sage.

Edit: math beat me to the punch, although I would recommend using ast.literal_eval instead of eval unless you trust the input you will receive.

share|improve this answer
4  
Ask a short question, get a short answer. – katrielalex Nov 9 '10 at 15:03
it doesnt work in the new python – jmeyer10 Nov 9 '10 at 15:13
Not full like mathematica, though I am using the same algorithm as them. – jmeyer10 Nov 9 '10 at 15:15
@jmeyer10: it should work fine in all Pythons, though literal_eval is only in 2.6+. How about using Sage? – katrielalex Nov 9 '10 at 15:22

You don't really give enough information to answer your question well. Do you want to test it as an identity (ie test the algebra) or as an instantaneous equality?

For the former, (install sympy first):

import sympy

def s_equation(a):
    x = sympy.Symbol('x')
    y = sympy.Symbol('y')
    left, right = a.split('=')
    return eval (left + '==' + right)

usage:

s_equation('x+x = x*2')
#True
s_equation('x+y**2 = y+x**2')
#False
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.