These "all except" symbolizations may seem a little ambiguous. (See tutorial 9.1 for details -- remember I'll be holding you doubly responsible for the tutorials now.)
But
var newElem, idElem (These are names)
function addToEnd(ident,text,time) { (note the logic:) if ( (typeof document.all == 'undefined') &&
( typeof document.getElementsByTagName != 'undefined' )) { (then DO the following...)
document.all = document.getElementsByTagName("*")
}
newElem = document.createElement("P") (
newElem.id = "newP" (here we create a name in the "object language", a name for the HTML page's language)
newElem.innerHTML=text (we put some text in our "newElem")
idElem = ident
setTimeout("document.all[idElem].appendChild(newElem)",time)
} (and display the text after a delay)
You'll also get our wedge in a standard program language, though it's represented by '||'. For example, one might want to add text to a grey box with ID either "box1" or "box2"
Descartes was the "I think therefore I am" guy. Also, he's responsible for a lot of physics and analytic geometry. What was his coordinate systemaization of space
called?
Cartesian Coordinates! (the x, y stuff on a plane.)
Descartes' Proof of God?
God must exist because by definition she has all perfections. Perfect things can’t fail to exit!
We need to be careful about defining God. Descartes just claims that God has all perfections. But this may seem to "beg the question" or assume what he wants to prove: that God exists.
Better...
x is God if and only if x has all perfections.
So there might or might not be any such x. This looks more like the defintions we given in logic. Like
A is sound if and only if A is both valid and has true premises.