[Math] Characterizing visual proofs

computational complexityproof-theory

“Proofs without words'' is a popular column in the Mathematics magazine.

Question: What would be a nice way to characterize which assertions have such visual proofs? What definitions would one need?

I suspect that in order to make this question precise, one will have to define a computational model for the “visual verifier'' and postulate the possibility of a visual proof if there is a quick verification algorithm, and the visual proof itself is short.

Rev. 1:

To elaborate: the intriguing and essential feature of a visual proof is that the proof can be “read'' or verified rather quickly using primitive operations that are different than those involved in reading and verifying textual proofs (e.g., area comparison or counting). These are operations that are native and quick for the visual system. (There may be other operations that could be used as well: color, texture, shape, or any other visual cue could be part of the repertoire.) It is not necessary that for an assertion to have a visual proof, that it involve inequalities, though this feature does lend itself relatively easily to a direct visual proof.

Thus, one could frame the notion of a visual proof as follows: An assertion has a visual proof if there is a map from the space of assertions (strings over an alphabet) to the space of pictures (strings over a visual alphabet) such that assuming a particular computational model of a visual verifier, there is an algorithm for reading the visual proof that is faster than the best one for reading the textual proof.

The computational model of the verifier allows one to specify what visual primitives may be used and how “costly'' they are in the algorithm. (For example, if a proof is mapped to a picture that only uses length of a line to represent elements in the proof, then reading the proof will likely be slow, whereas if it uses length and area, the proof might be immediately verified.)

This leads to a sort of complexity theory of visualizations. In fact, it implies that visualization is a special case of a more general activity: re-encoding a given problem so that one can exploit a fast algorithm.

There may be some assertions that have no maps that can be verified quicker than the original proof. What might these be?

I hope this provides a better context for my question.

Thank you for your comments in advance. I appreciate your attention and intellectual work.

Best Answer

Here is a complexity theory perspective. Be warned that it may differ wildly from someone whose primary focus is logic.

I think the appropriate definition of a "visual proof" would boil down to giving an appropriate definition of what a verifier does with such a proof. Proof systems in complexity theory are measured by (a) how much the prover and verifier "interact", (b) the allowed lengths of potential proofs, and (c) the power of the verifier.

In the framework you are proposing, the prover simply gives the verifier a proof and walks away. So (a) is already determined. Also, the visual proof is presumably written on a small sheet of paper, so (b) is essentially determined (let's say the visual proof can be encoded in length that is at most a fixed polynomial in the length of the claim).

That leaves (c), which is where proof complexity gets interesting. It turns out that verifiers can be surprisingly weak and still verify the proof of any statement which has short proofs (where "short" is "fixed polynomial"). For example, if you require that proofs be written on a two-dimensional grid, then for every theorem with short proofs, there are proofs of the theorem which can be verified by a two-dimensional finite automaton, see

J. Hartmanis, D. Ranjan R. Chang, and P. Rohatyi. On IP = PSPACE and theorems with narrow proofs. EATCS-Bulletin, 41:166–174, 1990.

A verifier could be a "streaming" algorithm: it could be randomized, go over the proof in just one pass, and use a tiny amount of workspace relative to the length of the proof, see

Richard J. Lipton: Efficient Checking of Computations. STACS 1990: 207-215

The famous PCP theorem (of Arora et al.) tells us that the verifier could even be a "spot checker" which is randomized and only probes the proof at a constant number of points (which depend on the random coin tosses).

All of these are effectively different ways of characterizing the class NP: the polynomial time verifier in the definition of NP can be replaced with verifiers of the above kind.

So I believe that a good characterization of "visual proof" would turn out to give yet another way in which a simple verifier can check the proof of a theorem. However it is natural to think that maybe not all theorems with short proofs should have short visual proofs, so perhaps it is too ambitious to think that all of NP should have "visual proofs". Hence your definition problem will be a delicate combination of figuring out what the verifier should be able to do in a visual proof, and what kinds of true statements should admit such proofs. Good luck!

Addendum (added 7/1/10). The following neat paper on "Approximate Testing of Visual Properties" (doi: 10.1007/978-3-540-45198-3_31) by Sofya Raskhodnikova looks very relevant: http://people.csail.mit.edu/sofya/pixels.pdf

Related Question