Multiplicative Inverse Manipulation Valid?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 4K views
snipez90
Messages
1,095
Reaction score
5

Homework Statement


Let S be a field containing elements x and y. If [tex]a \neq 0[/tex] and [tex]b \neq 0[/tex] then [tex]ab \neq 0[/tex]

Homework Equations


Field Axioms:

Associative law for addition
Existence of additive identity
Existence of additive inverse
Commutative law for addition
Associative law for multiplication
Existence of multiplicative identity
Existence of multiplicative inverses
Commutative law for multiplication
Distributive law

The Attempt at a Solution



The proof I want to implement is as follows:

Suppose [tex]ab = 0[/tex]. Then,

(1)[tex]1 = 1 \cdot 1[/tex] (Existence of additive identity)
(2)[tex]= (a*a^{-1})(b*b^{-1})[/tex] (Existence of multiplicative inverses)
(3)[tex]= (a^{-1})(b^{-1})ab[/tex] (Associative law for multiplication)
(4)[tex]= (a^{-1})(b^{-1})0 = 0[/tex] (A lemma that a*0 = 0, if a is a real)

which is a contradiction.

I have two primary concerns. The both involve the idea of substitution, which the professor didn't mention if we are allowed to use or not. Substitution is of course not an axiom (or we weren't given it).

Specifically I am focused on lines (2) and (4). In line (2), it seems the substitution is more valid in a sense that the product of a real and its multiplicative identity defines 1. But on line (4), it is simply substituting 0 in place for ab. We are allowed to add and multiply both sides by the same quantity and that's really all the algebra that were explicitly mentioned for use.
 
Last edited:
Physics news on Phys.org
OK sorry for the bump. The focus of my question is simply this:

We have a field that contain the 9 axioms listed above. These axioms involve binary operations. Adding or multiplying the same thing seems justified under the binary system we have. But what about a = b? Can we logically deduce that a and b are interchangeable? It's an equivalence statement so I can't think of a possible argument against using this in a proof. Nonetheless, it's not an axiom, do I have to prove it or does it follow logically.
 
"=" is an equivalence relation, so it is transitive. So substitution is justified.
 
Proof looks good (classical approach) - but I would eliminate the reference to 'a is real' in your final line, as it seems to me that you are referring to fields in general, not to the reals.
 
Sorry I was aware of that as well, that's what I meant but I didn't want to define the field again (laziness on my part). Thanks for the replies.