JoelSjogren

Untitled

Oct 2nd, 2021 (edited)
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. exercise: what is the right adjoint of the functor L : C^2 -> C^3 which sends (x, y) to (a*x + b*y, c*x + d*y, e*x + f*y) ?
  2.  
  3. answer: R : C^3 -> C^2 sends (u, v, w) to (u^a * v^c * w^e, u^b * v^d * w^f).
  4.  
  5. the unit 1 -> R . L has components
  6. (x, y) -> ((a*x + b*y)^a * (c*x + d*y)^c * (e*x + f*y)^e,
  7. (a*x + b*y)^b * (c*x + d*y)^d * (e*x + f*y)^f)
  8. given in the obvious way,
  9.  
  10. while the counit L . R -> 1 has components
  11. (a*(u^a * v^c * w^e) + b*(u^b * v^d * w^f),
  12. c*(u^a * v^c * w^e) + d*(u^b * v^d * w^f),
  13. e*(u^a * v^c * w^e) + f*(u^b * v^d * w^f)) -> (u, v, w)
  14. likewise.
  15.  
Add Comment
Please, Sign In to add comment