15-883 Midterm Exam

Computational Models of Neural Systems
Spring 2001

Out: Wednesday, February 28, 2001.
Answers due: 4:00 PM, Wednesday, March 7, 2001.

This exam is open book, open notes. You can even use the Web if you like. And you can ask me if you have questions about any of the problems, but you may not discuss the exam with anyone else.

You must type your answers; handwritten answers will not be accepted. You can hand in hardcopy at the start of class on March 7, or email your answers to dst@cs.cmu.edu.

  1. What is the difference between ligand-gated ion channel receptors and G-protein coupled (metabotropic) receptors? Give a specific example of each kind, chosen from any of the papers you've read so far. How does each kind act, and how long do the effects last?

  2. Marr defined three types of inhibition in his associative memory model of hippocampus. Describe each type, what purpose it served, and how it operated.

  3. Assume an input space of size 20 units over which patterns appear with 5 out of 20 bits on. Assume an output space of size 1000 units, with each unit having a fan-in of 4. Show all details of your calculations:

    A word of advice about computing the combinatorial "choose" function C(n,k). The formula for this is (n!)/[(k!)(n-k)!)]. However, if you code it this way, you will suffer floating point roundoff errors. A better way to compute this function is to calculate [n*(n-1)*...*(n-k+1)]/(k!). Or use Lisp or Scheme, so you can do the calculation using bignums instead of floats.

  4. Compare the putative role of acetylcholine in the rat hippocampus with that of serotonin in Aplysia; what are the similarities and differences? (A couple of paragraphs should suffice.)

  5. A rat repeatedly swims to a hidden platform in the Morris water maze from several starting locations. Later, back in its home cage, the rat dreams about its experiences.


Dave Touretzky
Last modified: Wed Feb 28 04:18:23 EST 2001