vote up -1 vote down star

Like, what do I care on learning how to build a one tape turing machine that accepts only the language with the same number of ones as zeros in an alphabet of ones and zeros? I'm currently feeling frustrated by my FA class and I guess that a bit of incentive (or shared contempt for this thing) would help.

Does this kind of logic apply when building a lexer/parser?

Please don't answer with "it will boost your critical thinking and turn you a mythical super-awesome mothman programmer" kind of paragraphs. I'll downvote any "it will make you appreciate what's happening under the hood", cause yeah, I know and I find it awful, if I were to build this kind of thing everyday I would have never gotten into CS. I want a real answer for what do I care about building this type of things.

flag

2  
you probably don't. – Victor Jun 28 at 2:58
1  
Clearly you don't care at all. – mquander Jun 28 at 3:20
1  
i think this post was written by a bot – akf Jun 28 at 3:25
Just a frustrated student, I'm sure. Things start getting pretty interesting with topics like decidability and recursion theory. – hythlodayr Jun 28 at 3:28
Yes, it's worded like it was written by someone that is... well... frustrated. But it's a valid question. Edit out the emotion but I don't think it deserves down votes. – colithium Jun 28 at 3:28
show 5 more comments

closed as not a real question by Mehrdad Afshari, gnovice, musicfreak, mquander, Steven A. Lowe Jun 28 at 5:24

2 Answers

vote up 5 vote down check

I might be the wrong person to ask because I loved my finite automata classes back when I took them, but the honest truth is you are not going to bump into this stuff frequently, and it won't magically turn you into a super software engineer.

Having said that, it is still amazingly useful stuff. Occasionally you hit some problem that it just directly maps to (usually in parsing and lexing, as you surmised). The thing is that automata and turing machines really tell you what computers are, and understanding them lets you understand problems better. Most of the time that doesn't make a difference, but when it does it can be enormous.

As an example, last year I actually wrote a program where we needed to do streaming XML parsing using a subset of XPath. In general you need to bring in the whole document to use XPath, but for what we needed it would be vastly superior if we could stream it, so I wrote a class that turned the XPath expressions into an NFA, then I converted that NFA into a DFA, and wrote a custom SAX parser that used the resulting DFA to maintain its state as parsed an arbitrary XML input. The net result is that we could get streaming parsing, but let everyone else write XPath queries instead of forcing everyone to write custom SAX parsers for each query.

link|flag
thanks this was helpful. I actually liked DFA and NFA, I hate pushdown automata and turing machines so far. – dmindreader Jun 28 at 3:04
vote up 3 vote down

Pushdown automata (in the form of CFG) is helpful now and again; more so if you're in the business of creating a language. Think ambiguous grammars...

Also, I ended up writing a small language converter some years back (proprietary language to Java), to convert about a hundred business objects (and thousands of methods) and the idea of CFG (and regular expression for tokenizing) made the whole endeavor really simple.

As far TM goes...

Well, I can't really see a use for it outside of research or a writing a new language.

Proving a language is a "real" language is simple enough: See if it's turing complete by writing code that emulates a turning machine. The understanding of why it's important is the more useful part.

Possibly more interesting is if you need to write a new language that is expressive but still must be less powerful than a TM, to avoid the nastiness of undecidability. But again, this is more research-level stuff.

Well, maybe maybe in interviews if they ask or to strut your geekiness with fellow coders :) Of course, if you have a manager who demands to write a check to prevent any sort of infinite loops or recursion...

Edit: Oh yes, FA class does help you to vaguely recognize when grep/regexp won't cut it for string matching :)

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.