Wednesday, April 27, 2011

This Sentence is False

In FreeBASIC, a functional demonstration of "This sentence is false" as a binary logarithm using a recursive function... This is the most perfect proof that I can muster of a double binary. Who needs evidence when you have proof?

;)

Original post: http://basenothing.blogspot.com/2009/04/much-ado-about-nothing-i-think-as-i.html

function CutSwap ( byref txt as string, byval idx0 as integer, byval idx1 as integer, byref newtxt as string ) as string

dim as string firsthalf = LEFT(txt,idx0), secondhalf = RIGHT(txt,len(txt)-(idx1+1))
return firsthalf + newtxt + secondhalf

end function

function ThisSentenceIsFalse ( byref s as string, byval it as integer ) as string
if it<1 then return s
dim as string res = CutSwap( s, InStr( "This sentence", s)-1, len("This sentence"), s & " " )
return ThisSentenceIsFalse ( res, it-1 ) & " "
end function

? ThisSentenceIsFalse ( "This sentence is false", 7 )
? 2^7
sleep

Thursday, April 21, 2011

The Materiality of Paradox

Whenever I am presented with a new idea, my first inclination is to head directly for all the cases that it cannot intrinsically handle, or in other words, the exceptions. The exceptions cannot “disprove” the theory. The theory's value is not in its rightness or wrongness, but rather, the quality with which it allows you to hedge your bets on the rode to discovery, and of course with the greatest efficiency. A theory's greatest test will be its willingness to self-correct and adapt, when a good guess proves untenable.

The best example that I can give to an ontological exception, is when a material object actually itself refers like a word to some meaning or value, a symbol like a flag, or a trophy. Here you can plainly see that what makes the object lingual, is immaterial.

But as objects can be made lingual, so language can be made material, but the reduction of one to the other causes a certain loss of information, both ways. The theory must then concede the argument that it is on some basic level, considering the immaterial negligible (verbal force/evaluation/meaning). It might even be said that the negligible is immaterial. Ha.

I've always been more interested in the verbal properties of language, but there are instances when the material properties of language express themselves verbally, in much the same fashion as machines act as producing objects, objects which can cause events.

Here, $This sentence is false$, has the mechanical property of being able to re-enter itself by infinite, metanymic substitution.

“This sentence” = “This sentence is false”

So, we can substitute the entire sentence for the part which represents the whole. After one re-entry we get “This sentence is false is false.” After two, “This sentence is false is false is false is false,” and this substitution will cause the number of “is false's” to double each iteration.

In this case the materiality of the sentence is expressed through a recursive re-entry, which allows the result of the last iteration, to be re-entered into the next operation. Thus this sentence is a linguistic representation, of the function, f(n) = 2^N, where N represents the amount of supplementations that have been enacted.

Thursday, April 7, 2011

Hello All

I have begun a new blog for featuring completed works of my digital poetry selection. Base Nothing has always been for critical essays and theory while Base Infinity has been a sketchbook for my poetry. I wanted to consolidate those poems which I consider to be "completed works" as opposed to "sketches" so I have started a third blog called Cardiac Neuropathy for such works. On it I will feature the definitive collection of my works which I consider to be "unimpeachably completed."

Take care all,

dt