Guest User

Untitled

a guest
Dec 17th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. >Total no. of edges = C(2n,2), Choose 1 edge in C(2n,2) ways.
  2. >Remaining no. of edges C(2n-2,2). (Since 2 vertices already selected.
  3. >So, no. of ways of choosing 2 edges = C(2n,2)*C(2n-2,2).
  4. >Total ways of choosing edges -> C(2n,2)*C(2n-2,2)*..*C(2,2)
  5. > => ((2n)!)/(2^n) *(Note: Missing n! in denominator)*
  6.  
  7. >Choose a vertex. Choose another vertex (part of same edge): 2n-1 ways.*(Why no. of ways of selecting first vertex not considered??)*
  8. >Choose next vertex. Choose the pair vertex (part of same edge): 2n-3 ways.
  9. >So end result - (2n-1)*(2n-3)*..*(3)*(1) (Product of all odd numbers less than 2n)
  10. >Simplification gives -> ((2n)!)/((2^n)*n!)
Add Comment
Please, Sign In to add comment