HI I have a simultaneous equation in terms of a, b, c, d. when I try to use NSolve to solve the equation and get the vales of a, b, c, d in terms of p,q,r,s it is just giving empty bracket as an answer. Any one can help me to solve this equation.
NSolve[{a*b + a*c + b*d + c*d == p &&
a*b + b*c - b*d == q &&
a*b + b*c + a*d + c*d == r &&
a*b + a*c - a*d == s},
{a, b, c, d}]
Thanks in advance.