BioNB 222
Quantitative Section
Spring 2008

Introduction

This section is aimed at engineering students and quantitative biologists who would like to see more mathematical developmment of the subject matter in BioNB 222. It will be taught in Spring 2008 by Bruce Land, a staff member in NBB and ECE. The tentative lecture schedule and possible section topics are shown below.

Prerequsites

Students should have a background in calculus and programming. There will be exercises in which students write computer programs to model neural action, then document the programs as web pages. If this sounds like fun, then take the section.

Assignments and Grading

Grading will be based on attendance, participation and written assignments. Students in this section will take the three lecture prelims, but not the final exam. Instead, there will be a final project and report. The section will be worth 30% of the course grade. This 30% is further broken down as follows:

Assignments
1. (Due Tues Jan 29)

Compare a typical axon extending from the spinal column to the (original) transalantic cable. Both have to solve the problem of conducting current a long distance in an electrically nonideal environment. Both are surrounded by a good conductor (saline). You might condsider length-to-diameter ratios, relative resistivity ratios of the insulators (lipid/myelin versus gutta-percha), and length constant. In later cables, pulse amplifiers were added to the cable. Compare these to nodes of Ranvier. You might consider gain, signal-to-noise ratio, and relative spacing. Be prepared to discuss.

2. (Due Tues Feb 5)

  1. Consider an infinte cable modeled as an infinite ladder of resistors as shown in section. Derive the input resistance. Do this by computing the equlivalent input resistance of the infinite ladder of resistors, then taking the limit as the ladder step size becomes zero.
  2. The lecturer stated that concentrations of ions inside and outside the cell don't change as the cell charges to Nernst equlibirum from zero voltage. Using the concentrations of ions given in lecture, justify this statement for a spherical cell. Assume a cell diameter of 20 micrometers, a resting potential of -70 millivolts and a membrane capacitance of 1 microfarad/cm2.
  3. Using HHsim, answer the questions in sections III, IV and V of the HHsim exercises page.

3. (Due Tues Feb 12)

  1. Using HHsim, answer the questions in section VI of the HHsim exercises page.
  2. Using HHsim and using long stimulus pulses, plot action potential frequency versus current strength using the longest stimulus pulse you can make (40 mSec). Is the rate linear with current strength in any region above threshold? Why does the rate max out? Why does the action potential amplitude drop at higher frequencies? Explain in terms of gate recovery times.
  3. Using HHsim investigate what happens near threshold. Use a long pulse (40 mSec). You may need to vary the current strength by as little as 0.001 to find a threshold. Do you see oscillations? Substandard action potential amplitudes?
  4. For the resting potential equivalent circuit given in section, compute the resting potential. Does it match the ion dependencies in the Goldman equation?

4. (Due Tues Feb 26)

Read the details of the Hodgkin-Huxley model. Down load this ZIP file which contains a simple Hodgkin Huxley simulator called HHpgm1.m and a few required functions.

  1. Modify the program so that the current injection list can be of arbitrary length. This will include changing the plotting commands so that the resulting graphs are arranged in a reasonable fashion. Print a few examples.

  2. Add the ability to compute the firing frequency of the model cell for each of the stimuli presented and to plot the current amplitude versus frequency in a separate figure window. Print the resulting curve.

  3. Modify the program so that there are two independent HH cells, each of which has a steady current input, as well as synaptic input from the other cell. The plots should be modified to show one cell in red and the other in blue. The synaptic input current should have a form like gsyn(V-Esyn) where Esyn is the reversal potential of the synapse and gsyn is the conductance change. The conductance change should be modeled as an instantaneous rise and fall in conductance. You might use gsyn=GMAX*(V>20) which implies the only voltages near the peak of the action potential actually release transmitter. V is the voltage of one of the cells and gsyn is the synaptic conductance change in the other cell. You will choose GMAX. I suggest values between zero and 10 in the units used in the program. The value of the reversal potential will determine whether it is excitatory or inhibitory. If Esyn is below resting potnetial, it will be inhibitory. If it is above threshold, it will be excitatory, If it between resting potential and threshold, it could be either.
  4. Adjust the steady current into the cells and the synaptic strength to make the cells alternately spike as shown below. Consider using inhibitory synapes. Set the steady currents to be slightly different for the two cells. There will be a transient period before phase locking.
  5. Can you find currents and synaptic strengths which causes the cells to fire at 2:1 frequency ratio similarly to that shown below??
  6. Solution code

5. (Due Tues March 3)

Modify the program, HHpgm1.m, from assignment 4 to support action potential propagation. Use a model for myelinated axons in which each node has HH currents and the between node circuit is a resistor Raxon=1/gaxon representing the axon internal series resistance. The current flowing from node n to the node n+1 is given by I(n,n+1)=gaxon*(Vn-Vn+1) . The net current into a node (entering from the left and leaving to the right) is given by I(n)=gaxon*(Vn-1-Vn)-gaxon*(Vn-Vn+1). There will clearly be special cases for the first and last nodes where no current can enter from the left at node one or leave from the right at the last node.

  1. Plot the voltage at each of 10 nodes after an action potential is initiated at the left-most node. Use a specific resistance of 30 ohm-cm for the axonplasm and a diameter of 1.0 mm.
  2. Using the diameter given in 1, determine the conduction velocity for at least three different node spacings. How does the conduction velocity depend on node spacing (linear, inverse, inverse squareroot, other)? Does this dependency match the literature?
  3. Determine the conduction velocity for at least three different diameters at constant node spacing. Choose a node spacing at which the smallest diameter does not have conduction failure. How does the conduction velocity depend on diameter? Does this dependency match the literature?
  4. At what node spacing does propagation fail?

Example plot:

Matlab hints:

  • To initialize an entire array
    m = ones(nTime, nNodes).*alpha_m(v-VREST)./(alpha_m(v-VREST)+beta_m(v-VREST));
    builds an array with dimension equal to nTime by nNodes. The ".*" and "./" notation means "use per-element operation".
  • To address all of the elements in one dimension use ":"
    m(i,:) = m(i-1,:) + mdot*DT;
    updates the i-th time of all nNodes elements of the array if mdot is a vector of derivitives.
  • Solution code

6. (Due Tues March 10)

A 2 to 5 page description of your final project proposal.

7. (Due Tues March 24)

For this assignment we are going to use a somewhat abstract model of neural function invented by Eugene M. Izhikevich. See http://nsi.edu/users/izhikevich/publications/whichmod.htm for much more detail and a matlab program which demos the model. The model simulates the dynamical properties on neurons whithout simulating the ionic properties. This program simulates a neural network with arbitrary synaptic connectivity which you add to and modify below.

  1. Modify the code to simulate the first 5 types of cells with no synaptic connections for 200 mSec. Apply 5 units of current to each cell through the sensory inputs from t=50 to t=100. The plot might look somewhat like the one below. Note that each different type of cell has specific interesting characteristics, such as adaption to a stimulus, or bursting which is modified by input. Do the firing patterns remind you of any of the neurons desribed in class or in the text?
  2. Modify the code so that there are two bursting cells (type 3 tonic bursters) synaptically connected so that they fire alternating bursts (like a central pattern generator), but controlled by a sensory stimulus to both cells which stops the firing in both. Run the simulation long enough before and after the sensory input to show phase locking. Perhaps 200 mSec before, 100 mSec during the stimulus, and 200 mSec after (first image below). Extend the stimulus period and the simulation time to show that small sensory inputs can be used to change the pattern period over a range. What is the range of periods, with both positive and negative inputs to both cells?
  3. Modify the code to make a eight neuron system in which cells 1 to 5 receive sensory input and cell 6 receives the output from cells 1 to 3, and cell 7 receives the output from cells 2 to 4, and cell 8 receives the output from cells 3 to 5. Further more, each of the first 5 cells receives excitatory input from one sensory unit and inhibitory input from the sensory inputs on to each side. (see diagram below). Adjust the synaptic weights from the receptors to the first layer of neurons so that a uniform stimulus produces no output spikes from N1 to N5. Use all type 2 neurons. Adjust the weights between the second and third layers so that a strong edge anyplace in the receptive field produces spikes. Print a few examples. The example output below shows the results of a simulation with just one cell (R6) which receives input from 2 to 4 and with a stimulus centered on the R3.

Final Projects

2008

2009

 

Schedule

The section will meet at 1030 to 1200 each Tuesday in room W364 Mudd.
Office hours from 1430 to 1600 every Monday in 246 Mudd Hall.

Topics

Here are some possibilities of how to relate mathematical topics to the course biological material.

Lecture Topics

Possible engineering topics

Introduction: Neuron Hypothesis

How are cells visualized? Technology.
Electrical synapses/close coupling

Introduction to Electrical Signaling in the Nervous System

The nervous system is an electrochemical machine. Neural nets and computation.
Comparison to a digital computer.

Resting Potential

Electrochemical equilibrium, Goldman eqn
Chemistry behind channel specificity
Equivalent circuits, compare to Goldman eqn.

Action Potentials and Propagation I

The transatlantic cable and cable equation.
Need for nonlinear amplifiers.
Equivalent circuits and electronic implementation.

Action Potentials and Propagation II

HH model and simulations
Spiketrain analysis, information theory

Ion Channel Structure, Function, and Diversity

Exponential duration distributions implied from chemistry. Simulation of relation between chemical equations and channel times.

Diseases of Ion Channels (channelopathies)

Quantitative estimates of ionic disturbances, rates, amplitudes, number of channels.
Poisons,Genetics

Ionic Mechanisms of Synaptic Excitation

Electrical synapses/chemical synapses
Equivalent circuits/current flows

Inhibition and Neuronal Integration

Automatic gain control
Nonlinear effects, equvalent circuits

Release of Neurotransmitter

Chemistry of vesicle fusion, diffusion equation, coupled reaction/diffusion

Neuromodulation

Multiple modes of systems of nonlinear oscillators.

Neurochemistry

 

Just say "know": Drugs and the Brain

Chemical kinetics, enzyme variability

Building Blocks of the Nervous System:
Part 1,2

 

Control of Movement

Central pattern generation by nonlinear oscillators

Parkinson’s Disease: A Molecular & Personal Perspective

Feedback control systems, stability, lag, delays.

Neural Systems for Sensory Maps

Spike train analysis and information theory

Language and Hemispheric Dominance

Probabilistic inference from sensory data

Sleeping, Dreaming and Waking

Wake/sleep chemical nonlinear oscillator

Emotional Centers of the Brain

 

Principles of Sensory Function

Statistical problems that sensory systems must solve.

Sensory Transduction

Tunneling? Quantum efficiency. Gain. Cool mechanisms.

Visual Periphery

Image compression, gradient emphasis, lateral inhibition. Spatial aliasing.

Vision in the CNS

Wavelet transform. Redundancy of the average visual scene. Compression in the visual system.

Hearing

Fourier Transform. Impedance matching. Traveling wave on a inhomogeneous membrane.

Sensory Motor Integration

Converting from Cartesian to body-joint coordinates, inverse kinematics

Initial Formation of the Vertebrate CNS
Pattern generation through local rules.
Forces and topology

Specification of Neural Tissue I

 

Specification of Neural Tissue II

 

The Directed Movement of Neurons and Axons

Chemical kinetics and gradient following

Apoptosis

 

Neurotropic Factors

 

Learning & Memory I: non-associative learning

Integrate and fire schemes/neural nets
Pulsed networks vs. Hopfield networks
Equivalent circuit of variable synapse

Learning & Memory II: classical conditioning

Synchrony, stability,

Learning & Memory III: operant conditioning

 

Complex Learning

 

Hebbian Learning and LTP
Is LTP involved in learning?

Comparison to back-prop networks
Local normalization requirements
simulation


Links and References

Lecture Schedule

BioNB 222 Course Calendar Spring 2008
# Day Date Faculty Unit Topic Reading
1 M 1/21 Hopkins Introduction to Neurobiology Ch.1
2 W 1/23 Fetcho 1. Molecular and Electrical Signaling
3 F 1/25 Fetcho Cellular Neurobiology Resting Potential
4 M 1/28 Fetcho Action Potential & Propagation I
5 W 1/30 Fetcho Action Potential & Propagation II
6 F 2/1 Fetcho Ion Channel Structure, Function, Diversity
7 M 2/4 Fetcho   Diseases of Ion Channels | Quiz (#1-4)  
8 W 2/6 Harris-Warrick Ionic Mechanisms of Synaptic Excitation
9 F 2/8 Harris-Warrick Inhibition and Neuronal Integration
10 M 2/11 Harris-Warrick Release of Transmitter
11 W 2/13 Harris-Warrick Neuromodulation
12 F 2/15 Harris-Warrick Neurochemistry
13 M 2/18 Harris-Warrick Just Say "Know" to Drugs
14 W 2/20 Harris-Warrick Psychiatric Diseases
15 F 2/22 Bass 2. Sensory and Motor Building Blocks of the Nervous System I
16 M 2/25 JF & RH-W Systems Exam 1 (on #1-14)  
17 W 2/27 Bass Building Blocks of the Nervous System II
18 F 2/29 Bass Neural Systems and Sensory Maps
19 M 3/3 Bass Control of Movement
3 W 3/5 Hopkins Touch and Principles of Sensory Function Ch. 9
21 F 3/7 Hopkins Sensory Tranduction see 222 notes
22 M 3/10 Hopkins Vision I Ch. 11
23 W 3/12 Baker Parkinson's Disease
24 F 3/14 Hopkins Vision II Ch.12
  M 3/17 ---      
  W 3/19 ---   Spring Break 3/15-3/23
  F 3/21 ---      
25 M 3/24 Hopkins Hearing Ch. 13
26 W 3/26 Hopkins Sensory-Motor Integration Ch. 20
27 F 3/28 Bass Sleeping, Dreaming, & Waking
28 M 3/31 Bass The Emotional Brain
29 W 4/2 Hoy 3. Cognitive Neurobiology Epilepsy
30 F 4/4 Hoy Neurobiology of Language
31 M 4/7 AB&CDH   Exam 2 (on #15-28)  
32 W 4/9 Hoy Neurobiology of Music
33 F 4/11 Hoy Learning and Memory I
34 M 4/14 Hoy Learning and Memory II
35 W 4/16 Booker Learning & Memory III
36 F 4/18 Booker 4. Developmental Initial Formation of Vertebrate CNS
37 M 4/21 Booker Neurobiology Specification of Neural Tissue I
38 W 4/23 Booker Specification of Neural Tissue II
39 F 4/25 Booker Directed Movement of Neurons & Axons
40 M 4/28 Booker Apoptosis
41 W 4/30 Booker Neurotrophic Factors
42 F 5/2 Hopkins Neuroethology