Category Theory
Zulip Server
Archive

You're reading the public-facing archive of the Category Theory Zulip server.
To join the server you need an invite. Anybody can get an invite by contacting Matteo Capucci at name dot surname at gmail dot com.
For all things related to this archive refer to the same person.


Stream: theory: algebraic topology

Topic: interchange map is mono?


view this post on Zulip Naso (Feb 27 2022 at 03:29):

In simplicial sets there is an 'interchange' map
h:(A×B)(C×D)(AC)×(BD)h : (A \times B) * (C \times D) \to (A * C) \times (B * D)
given by
h=(πAπC,πBπD)h = (\pi_A * \pi_C, \pi_B * \pi_D)
where ×\times is the cartesian product and * is the join.
Is it a monomorphism? How can I see that it is or is not? I know the criterion of monomorphism (left-cancellative) but I don't know how to check if it holds here.

view this post on Zulip Naso (Feb 27 2022 at 05:10):

Nasos Evangelou-Oost said:

In simplicial sets there is an 'interchange' map
i:(A×B)(C×D)(AC)×(BD)i : (A \times B) * (C \times D) \to (A * C) \times (B * D)
given by
i=(πAπC,πBπD)i = (\pi_A * \pi_C, \pi_B * \pi_D)
where ×\times is the cartesian product and * is the join.
Is it a monomorphism? How can I see that it is or is not? I know the criterion of monomorphism (left-cancellative) but I don't know how to check if it holds here.

Ok, now I'm thinking it is a mono but I'm not completely confident in my reasoning: If f,g:Q(A×B)(C×D)f,g : Q \to (A \times B) * (C \times D) and xQnx \in Q_n then since (XY)n=i+j+1=nXi×Yj(X * Y)_n = \coprod_{i+j+1=n} X_i \times Y_j,
f(x):=(f(x)i,f(x)j)=((f(x)ia,f(x)ib),(f(x)jc,f(x)jd))(A×B)i×(C×D)jf(x) := (f(x)_i, f(x)_j) = ((f(x)_i^a,f(x)_i^b), (f(x)_j^c,f(x)_j^d)) \in (A \times B)_i \times (C \times D)_j
for some i,ji,j with i+j+1=ni + j + 1 = n.
Now h(f(x))=((f(x)ia,f(x)jc),(f(x)ib),f(x)jd))(AC)n×(BD)nh(f(x)) = ((f(x)_i^a,f(x)_j^c),(f(x)_i^b), f(x)_j^d)) \in (A * C)_n \times (B * D)_n.
So if h(f(x))=h(g(x))h(f(x)) = h(g(x)) then f(x)=g(x)f(x) = g(x) since the dimensions and components must match, so hh is a monomorphism?

view this post on Zulip Naso (Mar 02 2022 at 00:51):

I also asked this on StackExchange (no answer yet) https://math.stackexchange.com/questions/4393365/interchange-map-in-simplicial-sets-is-a-monomorphism

view this post on Zulip Morgan Rogers (he/him) (Mar 02 2022 at 09:21):

Simplicial sets form a presheaf category. In particular, for a map to be a mono, you only need to check that it's componentwise injective.

view this post on Zulip Naso (Mar 02 2022 at 12:58):

Morgan Rogers (he/him) said:

Simplicial sets form a presheaf category. In particular, for a map to be a mono, you only need to check that it's componentwise injective.

thanks @Morgan Rogers (he/him) , I do know that, this is what I was trying to check. Sorry if it was not clear

view this post on Zulip Morgan Rogers (he/him) (Mar 02 2022 at 13:39):

Let's work through it! Explicitly,
((A×B)(C×D))n((A \times B) * (C \times D))_n is i+j=n(Ai×Bi)×(Cj×Dj)\coprod_{i+j = n} (A_i \times B_i) \times (C_j \times D_j)
where I'm taking the shortcut of taking the join of augmenting and then truncating the simplicial sets to simplify the notation. Meanwhile,
((AC)×(BD))n=(i+j=n(Ai×Cj))×(i+j=n(Bi×Cj)).((A * C) \times (B * D))_n = \left(\coprod_{i+j = n} (A_i \times C_j)\right) \times \left(\coprod_{i+j = n} (B_i \times C_j) \right).
If I'm not mistaken, the map hh sends ((a,b),(c,d))((a,b),(c,d)) to ((a,c),(b,d))((a,c),(b,d)), with no identification happening. This is "obviously" injective, since if two simplices in the domain have equal images, their component simplices must be the same.

view this post on Zulip Naso (Mar 02 2022 at 13:52):

Very clear! Thank you, Morgan :smile: :pray:

view this post on Zulip Morgan Rogers (he/him) (Mar 02 2022 at 14:43):

I'll copy that across to stackexchange and correct the indices.