prisoner’s dilemma game
cooperate | defect | |
---|---|---|
cooperate | 0, 0 | -5, 1 |
defect | 1, -5 | -4, -4 |
penalty shot game
kick left | kick right | |
---|---|---|
dive left | 1, -1 | -1, 1 |
dive right | -1, 1 | 1, -1 |
a mixed strategy Nash equilibrium of penalty shot game
kick left (\(\cfrac{1}{2}\)) | kick right (\(\cfrac{1}{2}\)) | |
---|---|---|
dive left (\(\cfrac{1}{2}\)) | 1, -1 | -1, 1 |
dive right (\(\cfrac{1}{2}\)) | -1, 1 | 1, -1 |
a mixed strategy Nash equilibrium of penalty shot game
kick left (\(\cfrac{1}{2}\)) | kick right (\(\cfrac{1}{2}\)) | |
---|---|---|
dive left (\(\cfrac{1}{2}\)) | 1, -1 | -1, 1 |
dive right (\(\cfrac{1}{2}\)) | -1, 1 | 1, -1 |
Any continuous map from a compact (closed and bounded) and convex subset of the Euclidean space into itself always has a fixed point.
kick left | kick right | |
---|---|---|
dive left | 1, -1 | -1, 1 |
dive right | -1, 1 | 1, -1 |
Any coloring whose sides satisfying the property has odd number of tri-chromatic triangle.
Any finite graph has an even number of odd-degree nodes.
digraph {
compound = true
rankdir = LR
subgraph cluster_left {
edge [dir = none]
node [shape = none, label = ""]
1 -> n [taillabel = "...", labeldistance = 2]
2 -> n
n -> 3
n -> 4 [taillabel = "...", labeldistance = 2]
n [shape = circle]
}
subgraph cluster_right {
edge [dir = none]
node [shape = none, label = ""]
5 -> n1
6 -> n2
n1 -> 7
n2 -> 8
n1 -> n2 [constraint = false, style = dotted]
n1 [shape = circle]
n2 [shape = circle]
}
4 -> 5 [style = bold, ltail = cluster_left, lhead = cluster_right]
}
digraph {
compound = true
rankdir = LR
subgraph cluster_left {
edge [dir = none]
node [shape = none, label = ""]
1 -> n [constraint = false]
2 -> n [taillabel = "...", labeldistance = 4]
3 -> n [style = invis]
4 -> n
n -> 5
n -> 6 [style = invis]
n -> 7 [taillabel = "...", labeldistance = 2, labelangle=-45]
n [shape = circle]
{1; n; rank = same}
}
subgraph cluster_right {
edge [dir = none]
node [shape = none, label = ""]
8 -> n1
9 -> n2
10 -> n3
n2 -> 11
n3 -> 12
n2 -> n3 [constraint = false, style = dotted]
n1 [shape = circle]
n2 [shape = circle]
n3 [shape = circle]
}
6 -> 9 [style = bold, ltail = cluster_left, lhead = cluster_right]
}
All graphs of degree of two or less have an even number of leaves.
graph {
dim = 4
layout = neato
node [shape = circle, label = ""]
1 -- 2
2 -- 3
3 -- 4
5 -- 6
6 -- 7
7 -- 5
8 -- 9
9 -- 10
}
All directed graphs where every vertex has both in-degree and out-degree at most one have sources and sinks coming in pairs.
If a directed graph has an unbalanced node (a vertex with different in-degree and out-degree), then it must have another.
A decision problem L is in NP if and only if it is reducible to SAT in polynomial time.
A search problem is in PPA (Polynomial Parity Argument) if and only if it can be reduced to the following problem.
A search problem is in PPAD (Polynomial Parity Argument for Directed Graph) if and only if it can be reduced to the following problem.
digraph {
node [shape = none, fontsize = 24]
rankdir = BT
size = 5
FP -> UEOPL
UEOPL -> EOPL
EOPL -> CLS
FP -> PWPP
CLS -> PLS
CLS -> PPAD
PPAD -> PPA
PPAD -> PPAQ
PPAD -> PPADS
PPADS -> PPP
PWPP -> PPP
PLS -> PTFNP
PPA -> PTFNP
PPAQ -> PTFNP
PPP -> PTFNP
PTFNP -> TFNP
TFNP -> FNP
PPAQ [label = <PPA<sub>q</sub>>]
{ PLS PPA PPAQ PPP rank = same}
{ PPAD PWPP rank = same }
}