Skip to content Skip to navigation

Connexions

You are here: Home » Content » Relations and Logic: Non-standard Interpretations

Navigation

Lenses

What is a lens?

Definition of a lens

Lenses

A lens is a custom view of the content in the repository. You can think of it as a fancy kind of list that will let you see content through the eyes of organizations and people you trust.

What is in a lens?

Lens makers point to materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

Who can create a lens?

Any individual member, a community, or a respected organization.

What are tags? tag icon

Tags are descriptors added by lens makers to help label content, attaching a vocabulary that is meaningful in the context of the lens.

This content is ...

Affiliated with (What does "Affiliated with" mean?)

This content is either by members of the organizations listed or about topics related to the organizations listed. Click each link to see a list of all content affiliated with the organization.
  • Rice Digital Scholarship

    This module is included in aLens by: Digital Scholarship at Rice UniversityAs a part of collection: "Intro to Logic"

    Click the "Rice Digital Scholarship" link to see all content affiliated with them.

Recently Viewed

This feature requires Javascript to be enabled.
 

Relations and Logic: Non-standard Interpretations

Module by: Ian Barland, Moshe Vardi, Phokion Kolaitis, Matthias Felleisen, John Greiner. E-mail the authors

Summary: How non-standard interpretations can provide insight into tough problems.

Prime factorization

Note that there are other possible interpretations of “primeprime”. For example, since one can multiply integer matrices, there might be a useful concept of “prime matrices”.

For example: Consider only the numbers F=15913 F 1 5 9 13 — that is, F=k4k+1 kN F k k 4 k 1 . It's easy to verify that multiplying two of these numbers still results in a number of the form 4k+1 4 k 1 . Thus it makes sense to talk of factoring such numbers: We'd say that 45 factors into 595 9, but 9 is considered prime since it doesn't factor into smaller elements of FF.

Interestingly, within FF, we lose unique factorization: 441=9×49=21×21 441 9 49 21 21 , where each of 9, 21, and 49 are prime, relative to FF! (Mathematicians will then go and look for exactly what property of a multiplication function are needed, to guarantee unique factorization.)

The point is, that all relations in logical formula need to be interpreted. Usually, for numbers, we use a standard interpretation, but one can consider those formulas in different, non-standard interpretations!

The Poincaré Disc

A long outstanding problem was that of Euclid's parallel postulate: Given a line and a point not on the line, how many lines parallel to the first go through that point? Euclid took this as an axiom (unable to prove that it followed from his other axioms). Non-Euclidean geometries of Lobachevsky and Riemann took different postulates, and got different geometries. However, it was not clear whether these geometries were sound — whether one could derive two different results that were inconsistent with each other.

Henri Poincaré developed an ingenious method for showing that certain non-Euclidean geometries are consistent — or at least, as consistent as Euclidean geometry. Remember that in Euclidean geometry, the concepts “point” and “line” are left undefined, and axioms are built on top of them (e.g., “two different lines have at most one point in common”). While it's usually left to common sense to interpret “point”, “line”, and “a point is on a line”, any interpretation which satisfies the axioms means that all theorems of geometry will hold.

The Poincaré disc is one such interpretation: “point” is taken to mean “a point in the interior of the unit disc”, and “line” is taken to mean “a circular arc which meets the unit disc at right angles”. So a statement like “two points determine a line” can be interpreted as [*] For any two points inside the disc, there is exactly one circular arc which meets the disc at right angles. Indeed, this interpretation preserves all of Euclid's postulates except for the parallel postulate. You can see that for a given line and a point not on it, there are an infinite number of parallel (that is, non-intersecting) lines.

Figure 1: Some lines in the Poincaré disc, including several lines parallel to a line L through a point p.
Figure 1 (poincare-lines.png)

(Note that the distance function is very different within the Poincaré disc; in fact the perimeter of the disc is off at infinity. Angles, however, do happen to be preserved.)

The critical point of his interpretation of a non-Euclidean geometry is this: it is embedded in Euclidean geometry! So we are able to prove (within the embedding Euclidean geometry) that the disc-postulates hold (e.g., we can prove the statement [*] above as a theorem about circular arcs in Euclidean geometry). Therefore, if there is any inconsistency in non-Euclidean geometry, then that could be parlayed into some inconsistency of Euclidean geometry. Thus, his interpretation gives a proof that the strange non-Euclidean geometry is as sound as our familiar Euclidean geometry.

P vs. NP and Oracles

A well-known problem in computer science — “P vs. NP” — asks whether (for a given problem) it is truly more difficult to find a short solution (when one exists) (“NP”), than it is to verify a short purported solution handed to you (“P”). For example, “Given a set of people and how strong person is, can you partition them into two tug-of-war teams which are exactly evenly matched?” Certainly it seems easier to check that a pair of proposed rosters has equal strength (and, verify that everybody really is on one team or the other) than to have to come up with two perfectly-matched teams. But conceivably, the two tasks might be equally-difficult up to some acceptable (polynomial time) overhead. While every assumes that P is easier than NP, nobody has been able to prove it.

An interesting variant of the problem lets both the problem-solver and the purported-answer-verifier each have access to a particular oracle — a program that will gives instant yes/no answers to some other problem (say, “given any set of numbers, yes or no: is there an even-sized subset whose total is exactly the same as some odd sized subset?”).

It has been shown that there is some oracle which makes the problem-solver's job provably tougher than the proof-verifier's job, and also there is some other oracle problem-solver's job provably no-tougher than the proof-verifier's job.

This means that any proof of P being different from NP has to be subtle enough so that when P and NP are re-interpreted as “P and NP with respect to a particular oracle”, the proof will no longer go through. Unfortunately, this eliminates all the routine methods of proof; we know that solving this problem will take some new attack.

Löwenheim-Skolem and the real numbers

The Löwenheim-Skolem theorem of logic states that if a set of (countable) domain axioms has a model at all, then it has a countable model. This is a bit surprising when applied to the axioms of arithmetic for the real numbers: even though the real numbers are uncountable, there is some countable model which meets all our (finite) axioms of the real numbers!

Object-oriented programming

Note that object-oriented programming is founded on the possibility for nonstandard interpretations: perhaps you have some code which is given a list of Objects, and you proceed to call the method toString on each of them. Certainly there is a standard interpretation for the function Object.toString, but your code is built to work even when you call this function and some nonstandard, custom, overridden method is called instead.

It can become very difficult to reason about programs when the run-time method invoked might be different from the one being called. We're used to specifying type constratins which any interpretation must satisfy; wouldn't it be nice to specify more complicated constraints, e.g. “this function returns an int which is a valid index into [some array]”? And if we can describe the constraint formally (rather than in English comments, which is how most code works), then we could have the computer enforce that contract! (for every interpretation which gets executed, including non-static ones).

An obvious formal specification language is code itself — have code which verifies pre-conditions before calling a function, and then runs code verifying the post-condition before leaving the function. Indeed, there are several such tools about (Java, Scheme). In the presence of inheritance, it's harder than you might initially think to do this correctly.

It is still a research goal to be able to (sometimes) optimize away such run-time verifications; this requires proving that some code is correct (at least, with respect to its post-condition). The fact that the code might call a function which will be later overridden (our “non-standard interpretations”) exacerbates this difficulty. (And proving correctness in the presence of concurrency is even tougher!)

Even if not proving programs correct, being able to specify contracts in a formal language (code or logic) is a valuable skill.

Real-World Arguments

Finally, it is worth noting that many rebuttles of real world arguments (see also some exercises) amount to showing that the argument's form can't be valid since it doesn't hold under other interpretations, and thus there must be some unstated assumptions in the original.

Content actions

Download module as:

PDF | EPUB (?)

What is an EPUB file?

EPUB is an electronic book format that can be read on a variety of mobile devices.

Downloading to a reading device

For detailed instructions on how to download this content's EPUB to your specific device, click the "(?)" link.

| More downloads ...

Add module to:

My Favorites (?)

'My Favorites' is a special kind of lens which you can use to bookmark modules and collections. 'My Favorites' can only be seen by you, and collections saved in 'My Favorites' can remember the last module you were on. You need an account to use 'My Favorites'.

| A lens I own (?)

Definition of a lens

Lenses

A lens is a custom view of the content in the repository. You can think of it as a fancy kind of list that will let you see content through the eyes of organizations and people you trust.

What is in a lens?

Lens makers point to materials (modules and collections), creating a guide that includes their own comments and descriptive tags about the content.

Who can create a lens?

Any individual member, a community, or a respected organization.

What are tags? tag icon

Tags are descriptors added by lens makers to help label content, attaching a vocabulary that is meaningful in the context of the lens.

| External bookmarks