24

I am not a mathematician and have not formally studied mathematics so I hope someone will be able to explain this to me in a way that I can understand given my level of mathematical understanding.

I have read the other posts about this question but the answers seem to assume some knowledge that I don't have.

I am learning about multilinear algebra and topological manifolds.

It is said that "linear maps" (of which I understand the definition) between vector spaces are so called "structure preserving" and are therefore called "homomorphisms".

Could someone explain in both an intuitive way, and with a more formal definition, what it means for a "structure to be preserved"?

user56834
  • 12,323
  • You might find my post here helpful. I discuss ring homomorphisms, but the scenario will be analogous to vector space homomorphisms with the "multiplication" now scalar multiplication. http://math.stackexchange.com/questions/2004755/how-to-visualize-ring-homomorphisms-isomorphisms/2004817#2004817 – Kaj Hansen Jan 28 '17 at 08:12
  • 1
    In short, if we say that the function doesn't preserve structure, we mean that if you were to apply the structure (add vectors, scale them, etc) and then apply the function to the result, you will get a different result from first applying the function, and then applying the structure. – Arthur Jan 28 '17 at 08:14
  • Context is important but for example group homomorphisms map identities to identities and so preserve structure in that sense. Similarly for inverses. – Karl Jan 28 '17 at 08:54
  • A similar question about group homomorphisms. – Michael Albanese Jan 28 '17 at 12:16

4 Answers4

26

There are many sorts of "structures" in mathematics.

Consider the following example: On a certain set $X$ an addition is defined. This means that some triples $(x,y,z)$ of elements of $X$ are "special" in so far as $x+y=z$ is true. Write $(x,y,z)\in{\tt plus}$ in this case. To be useful this relation ${\tt plus}\subset X^3$ should satisfy certain additional requirements, which I won't list here.

Assume now that we have a second set $Y$ with carries an addition ${\tt plus'}$ (satisfying the extra requirements as well), and that a certain map $$\phi:\quad X\to Y,\qquad x\mapsto y:=\phi(x)$$ is defined by a formula, some text, or geometric construction, etc. Such a map is called a homomorphism if $$(x_1,x_2,x_3)\in{\tt plus}\quad\Longrightarrow\quad\bigl(\phi(x_1),\phi(x_2),\phi(x_3)\bigr)\in{\tt plus'}\tag{1}$$ for all triples $(x_1,x_2,x_3)$.

In $(1)$ the idea of "structure preserving" works only in one direction: special $X$-triples are mapped to special $Y$-triples. Now it could be that the given $\phi$ is in fact a bijection (a one-to-one correspondence), and that instead of $(1)$ we have $$(x_1,x_2,x_3)\in{\tt plus}\quad\Longleftrightarrow\quad\bigl(\phi(x_1),\phi(x_2),\phi(x_3)\bigr)\in{\tt plus'}$$ for all triples $(x_1,x_2,x_3)$. In this case $\phi$ is called an isomorphism between the structures $X$ and $Y$. The elements $x\in X$ and the elements $y\in Y$ could be of totally different "mathematical types", but as far as addition goes $X$ and $Y$ are "structural clones" of each other.

  • 1
    Very clarifying. Is it the case that that if you generalize your example to other operators, that this gives a general definition of homomorphism and isomorphism? Secondly, if the above is the definition of homomorphism, can you prove that a linear map from a vector space to another is a homomorphism with respect to the vector space operators? – user56834 Jan 28 '17 at 10:27
  • By the way, is this why it is called a HOMOmorphism? Because the relation only goes one way? – user56834 Jan 28 '17 at 10:27
12

It is, in short, highly context dependent. Isomorphisms constitute a renaming of points in a space and do not change any of the properties we care about for that particular space.

An isomorphism of vector spaces preserves the properties we care about in a vector space. If you are a linearily independent set in the domain, you will form a linearily independent set when mapped to the image. If you are a subspace here, you are a subspace there. As far as linear algebra is concerned, the two sets just have elements with different names.

An isomorphism of topological spaces, although never called this, is a homeomorphism. If I am an open set in the domain, I am an open set in the image. If I am connected in the domain, I am connected etc. As far as topology is concerned, we just renamed a bunch of points.

Same goes for isometries of metric spaces, diffeomorphisms on manifolds, group isomorphisms, ring isomorphisms and so on.

operatorerror
  • 29,881
  • Thank you, this is going in the right direction. Couple of questions: 1) is there a formalization of "properties we care about"? Does that formally refer to the axioms of the mathematical structure that the homomorphism applies to (e.g. vector spaces)? 2) so if we say that mathematical structures A and B are homomorphic, this means exactly the same thing as saying that they are isomorphic? (I am thinking in particular about the definition of isomorphic as made in mathematical logic, which has as a corollary that all S-sentences are true in A iff they are true in B). – user56834 Jan 28 '17 at 08:18
  • so more generally, if we would do a complete search of all definitions and theorems published in mathematics papers that contain the words homomorphism or homeomorphism or isomorphism, and change them all to "isomorphism", then we wouldn't lose any information? They are completely synonymous, except for their customary differences in the contexts in which they are used?
  • – user56834 Jan 28 '17 at 08:21
  • so more specifically, is it true that if we know a) that A and B are homomorphic structures of some kind (say vector spaces), and b) we know nothing else about them, do we then have no way of distinguishing them from eachother?
  • – user56834 Jan 28 '17 at 08:24
  • 1
    An isomorphism is a homomorphism but the reverse isn't necessarily true. Monomorphims are one to one homomorphisms and epimorphisms are onto. The isomorphism relates to the mapping being bijective, both onto and one to one. – Karl Jan 28 '17 at 09:03