0

I'm currently working on a hw problem that I've been stuck on for far longer than I should be, and I'm starting to wonder if the problem was written wrong in the first place. I would just like someone to verify whether the identity that I am proving is correct or not so I know if I'm wasting my time or there's just something I'm not seeing.

The identity is as follows:

$a[b,c]-[ab,c]+[a,b]c=[a,c,b]-[a,b,c]-[c,a,b]$

where $[a,b]:=ab-ba$ and $[a,b,c]:=(ab)c-a(bc)$

a,b,c are elements of an arbitrary binary ring.

Thanks in advance

1 Answers1

1

I think it may be written wrong. This is what I get:

$[a,c,b] - [a,b,c] - [c,a,b] = (ac)b - a(cb) - (ab)c + a(bc) - (ca)b + c(ab)$

$= a(bc) - a(cb) + c(ab) - (ab)c + (ac)b - (ca)b$

$= a[b,c] + [c,ab] + [a,c]b = a[b,c] - [ab,c] + [a,c]b$

So I believe the $b$ and $c$ in the third term of the LHS of your identity have been juxtaposed in error.

David Wheeler
  • 15,842
  • 1
  • 27
  • 39