OK I've managed to narrow down what I am looking for. I maybe should have been more specific in my initial question, but I was less wise then. I'm trying to write a simple to understand explanation of PvsNP and my example NP problems are to be traveling salesman and protein folding. I want to show explicitly how the input string on a Turing Machine would grow exponentially in relation to the number of cities/amino acids. This I understand with Travelling Salesman. For protein folding I've had another search starting from the links above and have come up with two possible ways of explaining simply how protein folding is NP-Complete. The first is from:
http://www.brown.edu/Research/Istrail_Lab/papers/1998/p30-berger.pdf
which shows a complicated proof for a simple model of protein folding using a self avoiding walk on a 3D lattice being NP-Complete. This is a simple to understand model, but I can't extract a correspondingly simple explanation of why it would be NP-Complete using the Turing Machine model. The other approach is the one suggested for Travelling Salesman above:
Nodes are cities, edges are distances between cities, find the minimum distance from a starting city to visit a list of cities
Is there an analogous statement for a simple protein folding model:
Nodes are all the possible folded configurations, edges are the change in energy levels between folds, find the minimum energy level configuration. The "starting city" is a string of amino acids.
This looks different to Travelling Salesman, is an analogy like this too simple, or even possible? I may have misunderstood what was being said. Though given the two examples I am using this might be the better approach.