I want to study type system theory. I don't have any background in type system theory so I'm more or less a beginner (except the articles I've read on the subject and which I find intimidating because of the notation used). What are some good books that could get me started? I was looking at Benjamin C. Pierce's "Types and Programming Languages" book. Is that appropriate for a beginner or is it too difficult? If it's too difficult what else could I use to start my study?

Thanks,

--

Cheers, Alex

link|improve this question

69% accept rate
feedback

closed as not constructive by Bill the Lizard Oct 2 '11 at 0:34

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

up vote 5 down vote accepted

I think Types and Programming Languages would be a good choice.

When I've first read TaPL, I was a beginner in type theory as well, and I didn't find it too hard to understand.

You will see a lot of the notation used in the articles you've seen, but the notation will be explained before it's used, so it shouldn't be a problem. There isn't really anything intimidating about the notation once you know what it means1.

1 Which is quite often the case with these things. Sometimes I think that most of mathematics and formal computer science consists of inventing scary-looking notations for simple things, so the uneducated masses don't realize how easy it all really is.

link|improve this answer
2  
Inventing notation is about not having to write the same multi-word phrase 100 times in a 10-page paper, thereby blowing it up to 20 or 30 pages. For instance, the '≺' symbol means "is a subtype of", a 16 character long phrase. It's not about obscurity, it's about being able to get the message across at all. – Novelocrat Nov 11 '10 at 23:35
1  
@Novelocrat: I was mostly kidding about that. – sepp2k Nov 12 '10 at 0:32
Thanks sepp2k. Jokingly I'd be tempted to say the same :). I'll buy TaPL and start reading it. – Alex Nov 12 '10 at 5:50
feedback

TAPL is a hard book to understand and is aimed at graduates (and possibly phd candidates). It's certainly not for beginners. I would instead recommend a book like 'Concepts in Programming Languages' by John C. Mitchell aimed at undergraduates to get yourself familiar with the basics first.

link|improve this answer
Thanks, but I'm only a beginner with type system theory :) I'm not new to programming languages and I've implemented my fair share of interpreters. It's just that I want to get more into the theoretical side of things. – Alex Nov 13 '10 at 15:41
feedback

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