parmenides51 23.07.2019 00:41 Is it possible to draw in the plane the graph presented in the figure so that all the vertices are different points and all the edges are unit segments? (The segments can intersect at points different from vertices.) Attachments:
Kayak 23.07.2019 09:19 No: [asy][asy] pair O = (0,0), A = dir(90), B = dir(-60), C = dir(-120), D = A+B-O, E = A+C-O ; dot(O); dot(A); dot(B); dot(C); dot(D); dot(E); draw(O--A--D--B--cycle, red); draw(O--A--E--C--cycle, red); draw(O--C--B--cycle, red); path c1 = circle(E,1), c2 = circle(B,1); draw(c1, blue); draw(c2, blue); [/asy][/asy]