Linear Algebra: Understanding max(x,y) in x \oplus y

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 · 2K views
harvellt
Messages
95
Reaction score
0
Not sure if this is the best place for this, its not an entire problem I am having trouble with but a small part of one.
I am working on linear algebra and I can't find a good explanation for
[tex]x \oplus y= max(x,y)[/tex]

What or of max is it? Additive, multiplicative?

Thank you so much been trying to do my own research but can't seem to find it.
 
Physics news on Phys.org
It looks like the author is defining a new operation [itex]\oplus[/itex] that is not either addition or multiplication. The result of applying [itex]\oplus[/itex] to two integers is, by definition, the greater of the two integers. Presumably, you are then asked to prove whether or not this operation satisfies certain properties (commutivity, associativity, etc.).

Does that help?

Petek
 
yep exactly that is very helpful! So you think that [tex]max(1,2)=2[/tex]? for example?
The full problem defines scalar multiplication normally and then gives that operation over Reals and asks if it is a vector space.
 
harvellt said:
yep exactly that is very helpful! So you think that [tex]max(1,2)=2[/tex]? for example?
The full problem defines scalar multiplication normally and then gives that operation over Reals and asks if it is a vector space.

Correct, so [itex]1 \oplus 2 = 2[/itex].

Petek
 
"Addtion" in a vector space has to satisfy:
1) Associative. Is [itex]a\oplus(b\oplus c)= (a\oplus b)\oplus c[/itex] for all numbers, a, b, and c?
2) Commutative. Is [itex]a\oplus b= b\oplus c[/itex]?
3) Distributive. Is [itex]a(b\oplus c)= ab\oplus ac[/itex]?
4) Additive identity. Is there some "e" such that [math]a\oplus e= a[/math] for all a?
5) Additive inverses. For every number a, is there a number b such that a\oplus b= e, where e is as in (4)?

For example, [itex]a\oplus(b\oplus c)= a\oplus max(b,c)[/itex]= max(a, max(b,c))= max(a,b,c).