by RonPurewal Tue Jan 01, 2008 7:02 am
you can make pretty short work of choices i and ii by plugging into the given expression.
for choice iii, one way to attack is just to plug in a bunch of random triples of numbers for a, b, and c. if the statement works for, say, two choices of random numbers in a row, then it's worth betting that it works all the time.
try a = 1, b = 3, c = -4:
(a @ b) @ c = (1) @ -4 = 1
a @ (b @ c) = 1 @ (11) = 1
works
try a = 3, b = -5, c = -2:
(a @ b) @ c = (13) @ -2 = 37
a @ (b @ c) = 3 @ (-17) = 37
works
good enough for me
--
alternatively, you could plug directly into the given definition.
(a @ b) @ c = (a+b-ab) + c - (a+b-ab)c = a + b + c - ab - ac - bc + abc
a @ (b @ c) = a + (b+c-bc) - a(b+c-bc) = a + b + c - ab - ac - bc + abc
works
watch your signs when you use the distributive property!
--
as for choosing which approach is better for you, that depends only upon your relative skill at algebraic manipulation vs. rapid arithmetic.