I've read the wikipedia article, but couldn't grasp the concept. Is there an informal definition?

Are there examples of uses of free objects in calculus?

Are free objects somehow connected to constructiveness? Maybe there are some computer program examples (in Haskell preferably).

A reference to a short introductory text is welcome.


Solution 1:

The free objects you will encounter most often are free abelian groups (e.g $\mathbb Z^n$), free modules (e.g. vector spaces, say $\mathbb R^n$), free commutative algebras (polynomial rings, say $\mathbb C[X]$), free groups ($\mathbb Z$ again, on 1 generator, but on 2 and more generators you lose commutativity, elements are words in the generators).

The idea is building the simplest set with a desired algebraic structure from your chosen generators. For instance the simplest group from "$a$" is $\{a^n|\ n=...,-1,0,1,2,...\}$, which is abelian.

The wikipedia general definition of a free object is interesting but rather from the point of view of an algebraist, or category-theorist, it is fundamental in understanding algebraic theories as monads. It is really part of universal algebra, a subject with relatively few applications, though it is good to know it exists.

Also, I think there is an error in the wiki article, free objects are not analogues of bases of vector spaces, it is the generating sets of free objects that are.

Actually, from the wiki article: "let X be a set (called basis)" and later "A is the free object on X".

As Harald, I wonder why you mention calculus. It may be interesting to find contrived examples of free objects in calculus. First you would have to find categories in calculus.

EDIT: I should have stressed that the word "free" comes from "having no relation of dependence" -think "linear dependence" for example. This applies to the elements of your object. For instance, in a free abelian group you do not have any equality other than $xy=yx$ and those derived from this -$xyx=x^2y$, etc. (I cheat because you also have the associativity condition, $x(yz)=(xy)z$, the equality for 1, $1x=x$, and inverses, $xx^{-1}=1$, i.e. the group axioms.)

Solution 2:

I'll just add some consideration which I think complete plm answer and try to explaining wikipedia definition of free objects.

Free objects are structures (of some type, they can be groups, monoids, vector spaces, algebras or other kind of things) which have a special subset of generators, called the free generators of the structure. Because the definition of generation depend on the type of structure we are considering, i.e. the category we are working with, also the property of being a free object is related to the category we are considering: for instance $\mathbb Z^2$ is a free abelian group but it isn't a free group.

In the algebraic context there's always an explicit way to describe such structures, namely as the quotient of the term algebras (for the given signature of your algebraic structure) by the relations/equations that the structure should satisfy.

Term algebras over a given set $S$ are simply symbolic combinations, i.e. strings, of elements of $S$ and some special symbols (called operation's symbols) build up according to some rules [of some grammar]. Free algebras are obtained simply identifying in term algebras some strings according to the relations that we want out structure satisfy. Clearly term algebras are free objects to, they are free objects in the category of those algebras having some type of operations which doesn't satisfy any equations.

The real cool feature of free objects is that given a set of free generators, we can extend (in a unique way) every map from the set of free generators to another structure (of the same type) to a morphism from the free object to the said structure. So to build up homomorphisms from free objects to other structures we just need to decide where to send the free generators. That's the cool property the we always use in a theoretical context when dealing for instance with vector spaces, where to provide linear homomorphisms instead of providing an explicit function between vector spaces we simply provide a function from a basis of one vector space to (the underling set of) a vector space.

This property is the definition of free objects, I suppose that the problems you've found are due to the use of the categorical language, which is the right formalism in which express properties of this type.

I hope this answer help in clarifying wikipedia's definition of free object.