-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrain_waves.tex
2905 lines (2085 loc) · 119 KB
/
Brain_waves.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\chapter{Brain waves}
\label{chap:EEG}
The human brain tends to follow rhythm. This is called neural oscillations
(Sect.\ref{sec:neural-oscillations}), which was first discovered in 1875 by
Richard Carton in England. Different techniques have been used to record the
electrical activity from single neuron, to a region that ensemble the activity
of multiple neurons. Very strong EEG signals come from hippocampus -
Sect.\ref{sec:hippocampus}.
In this chapter, we will discuss these different techniques and their
applications in helping us to understand the brain better.
\section{Neural oscillation}
\label{sec:neural-oscillations}
Neural tissue can generate oscillatory activity in many ways, driven either by
mechanisms within individual neurons or by interactions between neurons.
It was first observed in open brain of rabbits and monkeys by English physician
Richard Caton (1875). Later, German neurologist Hans Berger was able to
amplified the signal and recorded it without opening the skull. He used the word
{\bf electroencephalography} (EEC - Sect.\ref{sec:EEG}).
The recorded signal showed some forms of oscillations, known as brain waves.
Depending upon the amplitude and the frequency, they can be mapped to different
states of the brain (e.g. awake, sleep, healthy, disease, \ldots).
\begin{itemize}
\item In individual neurons, oscillations can appear either as oscillations
in membrane potential or as rhythmic patterns of action potentials, which then
produce oscillatory activation of post-synaptic neurons.
\item Synchronized activity of large numbers of neurons can give rise to
macroscopic oscillations, which can be observed in the electroencephalogram
(EEG) - Sect.\ref{sec:EEG}. Our brains produce four basic brainwave states:
beta, alpha, theta and delta
(Sect.\ref{sec:alpha-waves}).
\end{itemize}
\subsection{Microscopic neural oscillations}
\label{sec:rhythmic-activity-isolated-neuron}
By blocking all inputs, the experimental data showed that the neuron by itself
can generate depolarization-hyperpolarization cycles, e.g. during sleep
(Sect.\ref{sec:sleep}).
The rhythmic patterns of action potentials of individual neurons indicate that the rhythm is generated
intracellularly, Fig.\ref{fig:spontaneous-firing-spinal-coord-neuron}.
\begin{figure}[hbt]
\centerline{\includegraphics[height=5cm,
angle=0]{./images/spontaneous-firing-spinal-coord-neuron.eps}}
\caption{NMDA-induced oscillations in isolated neurons (Fig.10.12 in
\citep{striedter2015}): a neuron in lampley's spinal cord bathed in 0.15 mM
NMDA. (A) with $\Na$ current available: the neuron can spike 2-3 APs per burst;
(B) TTX blocking $\Na$ channels; the membrane potential slowly depolarize until
it reaches the value that remove $\Mg$ blocking of NMDAR; and then cause rapid
depolarization via influx of positive ions (e.g. Ca2+) through opening NMDAR;
the depolarization reach the peak and start to hyperpolarize when outward $\K$
channels starts to open. When $\Vm$ hyperpolarizes to a value that block NMDAR;
then the potential drops quickly}
\label{fig:spontaneous-firing-spinal-coord-neuron}
\end{figure}
\subsection{Macroscopic neural oscillations}
Although isolated neurons can exhibit rhythmic patterns of activity
(Sect.\ref{sec:rhythmic-activity-isolated-neuron}), most of the relatively fast
rhythms in the brain are generated by small networks of interacting neurons.
The interaction between neurons can give rise to oscillations at a different
frequency than the firing frequency of individual neurons.
\begin{enumerate}
\item half-center oscillator (HCO) - Sect.\ref{sec:half-center-oscillator}
\item central patterns generators (CPG) - Sect.\ref{sec:CPG}
\end{enumerate}
Oscillations provide a temporal framework for the
synchronous firing of principal neurons; in turn, the synchronous
firing of particular subsets of principal neurons may have cognitive
significance
\subsection{-- Half-center oscillators}
\label{sec:half-center-oscillator}
A key to understanding rhythm generation is the concept of a half-center
oscillator (HCO). A half-centre oscillator consists of {\bf two neurons that
have no rhythmogenic ability individually}, but produce rhythmic outputs when
reciprocally coupled.
\subsection{central patterns generator (CPG): spinal coord}
\label{sec:central-patterns-generator}
\label{sec:CPG}
Central pattern generators (CPGs) are biological neural networks that produce
rhythmic patterned outputs without sensory feedback.
Neural networks in the spinal cord, referred to as "central pattern generators"
(CPGs), are capable of producing rhythmic movements, such as swimming, walking,
and hopping, even when isolated from the brain and sensory inputs.
\url{https://en.wikipedia.org/wiki/Central_pattern_generator}
\subsection{Oscillations during sleep}
\label{sec:sleep}
When sleeping, the brain enters a state with relatively
inhibited sensory activity, inhibition of nearly all voluntary muscles, and
reduced interactions with surroundings.
The areas activated during REM sleep are approximately inverse to those
activated during non-REM sleep.
\subsection{-- REM: PGO wave}
\label{sec:PGO-wave}
Neural activity during REM sleep seems to originate in the brain stem,
especially the pontine tegmentum and locus coeruleus.
The rapid-eye movement in REM is indeed less rapid than those normally exhibited
in waking humans. These eye movements follow the {\bf ponto-geniculo-occipital}
waves (PGO wave) originating in the brain stem.
When the body shifts into REM sleep, motor neurons throughout the body undergo a
process called hyperpolarization: their already-negative membrane potential
decreases by another 2-10 millivolts, thereby raising the threshold which a
stimulus must overcome to excite them.
\subsection{NREM: N3 (SWS)}
During stage 3 (N3 or SWS): EEG activity is synchronized, producing slow waves
(i.e. 20-50\% of delta wave - Sect.\ref{sec:delta-wave}) with a frequency of less
than 1 Hz (i.e. 0.5-3Hz) and a relatively high amplitude (75 $\mu$V) in EEG
signal of about 30 second epoch.
\begin{itemize}
\item first section (down state, hyperpolarizing phase, inhibition period):
neurons in the neocortex are silent
\item second section (up state, depolarizing phase, excitation period):
neurons fire briefly at a high rate.
\end{itemize}
Slow-wave sleep (SWS) is considered important to consolidate new memories
\section{Different states of brain}
\label{sec:state-brain}
\subsection{Wakefulness}
\label{sec:state-brain-awake}
\subsection{Sleep}
\label{sec:state-brain-sleep}
\label{sec:NREM}
Sleep is defined by 4 criteria: reduced motor activity, diminished responses to
external stimuli, stereotyped posture (in humans, lying down with eyes closed),
and relatively ready reversibility.
In mammals, sleep occurs in repeating periods with 2 highly distinct modes:
first non-REM sleep and then REM sleep (rapid eye movement = REM). Sleep
proceeds in cycles of NREM and REM, usually four or five of them per night, each
cycle is about 90 minutes. NREM makes up about 80\% of normal night's sleep; and
20\% is from REM.
In turns, NREM is divided into 3 stages (previously as 4 stages):
\begin{enumerate}
\item {\bf N1} (drowsiness): begin when you first lie down and close your
eyes.
Soon, beta wave is replaced by the slower alpha wave; and then even slower theta wave
begin to emerge.
This stage (for each cycle) lasts 3 to 12 minutes.
\item {\bf N2} (light sleep): in EEG, the frequency decreases while the
amplitude increases.
The theta waves characteristic of Stage 2 sleep are interrupted by occasional
series of high-frequency waves known as sleep spindles
(Sect.\ref{sec:spindle-wave}).
\item {\bf N3} (slow-wave sleep, SWS, deep sleep): 20-50\% of delta wave; and
last about 30-second each cycle. Longer periods of SWS occur in the first part
of the night, primarily in the first two sleep cycles.
NOTE: Since 2008, stage 5 (characterized by $> 50$\% of delta wave) is no longer
used by American Academy of Sleep Medicine (AASM), and combined into stage 3.
\end{enumerate}
REM sleep is divided into 2 modes
\begin{enumerate}
\item tonic mode: theta rhythm
\item phasic mode: PGO wave, and actual 'rapid' eye movement.
During phasic mode, processing external stimuli is heavily inhibited
\end{enumerate}
REM sleep is closely associated with dreaming. REM sleep typically occupies
20-25\% of total sleep in adult humans: about 90-120 minutes of a night's sleep.
The first REM episode occurs about 70 minutes after falling asleep.
During REM sleep, the blood flow in the brain is the same or higher than when
the person is awake. During non-REM sleep, the brain uses significantly less
energy (11-40\% lower) than it does in waking; i.e. ATP molecules are produced
to restock during this time
\subsection{Hibernation (comatose)}
\label{sec:state-brain-hibernate}
People in comas have brain waves. A coma is a condition that is behaviorally and
physiologically different from sleep. A person in a coma is unconscious and not
able to be awakened.
This differs from sleep, because you can easily wake up someone who is
asleep. Coma and sleep also differ in the amount of blood that flows into
the brain (blood carries oxygen and the brain needs more oxygen than any
other organ in the body).
In a coma, the blood flow is always lower than in sleep/awake. The brain
waves, or EEGs, of coma patients are also different from patients who are awake
or sleeping, but not all coma patients have the same EEG patterns.
\section{EEG}
\label{sec:EEG}
%\subsection{Different firing frequencies in different brain regions}
\label{sec:brain-waves}
In the brain, neurons communicate by sending nerve impulses in the form of
action potential (Sect.\ref{sec:AP-neuron}) which is the result of changes in
electrical charge of the neurons.
By giving off electricity, the signal can be picked up on EEG and is called {\bf
brain waves}. EEG works by putting a small electrodes (about 1 cm across) on the
person's head. The electrode only records the electrical signal; not give out
electricity. As the electrodes are put on the scalp, it cannot detect signals
from individual neurons - which is far too small. Instead, {\it EEG records the
change in signal from small areas of the brain caused by the activity of
thousands of neurons in that area at a time}
(Sect.\ref{sec:EEG-signal-meaning}).
Though the signal comes from many neurons, the signal are still quite small and
need to be amplified. What we need to know
\begin{enumerate}
\item how many electrodes - Sect.\ref{sec:EEG-how-to-record}
\end{enumerate}
\begin{mdframed}
Different recording techniques applied to different parts of the body:
electrocardiography (ECG, heart - Sect.\ref{sec:ECG}), electromyography (EMG,
muscular contractions), electroencephalography (EEG, brain),
magnetoencephalography (MEG, brain), electrogastrography (EGG, stomach),
electrooptigraphy (EOG, eye dipole field).
NOTE: {\bf encephalo-} (Greek): relating to the brain
\end{mdframed}
\subsection{-- how to record}
\label{sec:EEG-how-to-record}
One active electrode, one (or two specially linked together) reference
electrode; and possibly one ground electrode.
Two electrodes (acgive + reference) to record the voltage difference between the
two points, with the current between them is the result of current flow in the
cortical regions. Using a third electrode as the ground electrode, the {\it
differential voltage} can be obtained by subtracting the two voltages showing at
active and reference points.
The multi-channel configuration can have upto 128 or 256 active electrodes.
Standard for electrode placements was adopted as {\bf 10-20 electrode placement
system} by IFEC in 1958. Each electrode is identified by a letter, and a number,
Fig.\ref{fig:EEG_electrode-placement}
\begin{itemize}
\item letter: F (frontal), C (central), T (temporal), P (posterior), O
(occipital) - Sect.\ref{sec:frontal-lobe}, Sect.\ref{sec:temporal-lobe},
Sect.\ref{sec:posterior-lobe}, Sect.\ref{sec:occipital-lobe}
\item digit: even (right side), odd (left side) [which side is left side is
is subjective and by convention of the user]
\end{itemize}
The impedance between skin and electrode should be small enough (< 5 KOhm; best
$\approx$ 1 KOhm) to avoid signal distortion.
\begin{figure}[hbt]
\centerline{\includegraphics[height=5cm,
angle=0]{./images/EEG_electrode-placement.eps}}
\caption{Electrode placements using 10-20 electrode placement system}
\label{fig:EEG_electrode-placement}
\end{figure}
\subsection{---- active electrode}
\label{sec:EEG-active-electrode}
The locations of active electrodes may not fit exactly the regions below, but
closed to, as the exact regions of active sources are unknown and vary from person to
person.
\begin{enumerate}
\item F7 = center of rational activities
\item Fz = intentional and motivational centers
\item F8 = source of emotional pulses
\item C3, Cz, C4 = sensory and motor function
\item P3, Pz, P4 = activity of perception and differentiation
\item T3, T4 = emotional processing
\item T5, T6 = certain memory function
\item O1, O2 = primary visual region
\end{enumerate}
\subsection{---- reference electrode}
\label{sec:EEG-reference-electrode}
\begin{mdframed}
NOTE: {\bf Reference-free technique} can be done by either
\begin{itemize}
\item average all references
\item weighted average all references
\item source derivation
\end{itemize}
\end{mdframed}
Reference electrodes' position (should choose the one connecting to an
electrically neutral region):
\begin{enumerate}
\item Cz : preferred; when it is in the middle among activity electrodes (but
can give poor resolution for closed points)
\item linked ears: preferred
\item linked-mastoids
\item ipsilateral-ear
\item contralateral-ear
\item C7 reference
\item bipolar reference
\item tip of the nose
\end{enumerate}
\subsection{---- ground electrode}
\label{sec:ground-electrode}
\label{sec:EEG-ground-electrode}
Ground electrodes' position:
\begin{enumerate}
\item not important in modern devices
\item preferred: FPz (forehead) or ear
\item wrist or legs
\end{enumerate}
\subsection{-- what it records}
\label{sec:EEG-signal-meaning}
The electrical signals (either inhibitory or excitatory) come from different
regions
\begin{itemize}
\item thalamic neuron
\item thalamocortical neuron
\item cortical neuron
\end{itemize}
projecting to postsynaptic pyramidal neurons.
The synchronized inhibitory and excitatory postsynaptic potentials that arises
from thousands of pyramidal cells, summate at individual subregions of the
cortex and extend to the scalf surface where they are recorded by the
non-invasive EEG technique.
In addition to postsynaptic potentials, the {\bf intrinsic cell currents}
produced by the (subthreshold) activation of ionic channels can also contribute
to EEG. However, the contribution maybe small, as they
\begin{itemize}
\item have much smaller potential field (Sect.\ref{sec:potential-field})
distribution, i.e. less penetration into extracellular spaces.
\item much shorter (about 1ms) in duration than postsynaptic potential (about
15ms to 200ms)
\end{itemize}
Thus, action potential (APs) is considered contributing insignificant to either
scalps or clinical intracranial EEG recordings.
Upon neuron's membrane depolarization, it changes the voltage in the local
region. Such membrane depolarization can be subthreshold, i.e. the result of
synaptic transmission that causes postsynaptic potential, or suprathreshold,
i.e. spiking of the neuron. Membrane depolarization at dendrites generates
electrical currents toward soma.
By putting the electrodes on the scalp of the brain, EEG records such membrane
depolarization of neurons near the surface, i.e. in the cortical areas.
\begin{itemize}
\item the summed graded postsynaptic potential from pyamidal cells which
create electrical dipoles between soma (body of neuron) and
apical dendrites (neural branches).
\item the current needs to penetrate through skin, skull and several layers
that weaken the signal. The recorded signal on the scalp surface must be the
result of a large population of neurons's membrane activity, and it must takes
into account (1) the amplitude of the depolarization for each neuron, (2) the
location of the neuron in relative to the location where signal is recorded.
\end{itemize}
\subsection{-- how it looks like?}
EEG records the electrical activity of cortical neurons. It is the graph of
voltage vs. time (x-axis). Voltage here is the recorded voltage difference
between two electrode sites. The recorded signal are typically weak, and need to
be amplified, before displaying on the trace.
Neurologist Hans Berger, was the first to apply the non-invasie EEG to the human
brain (in 1924). Later, Andrian and Matthews verified the concept 'human brain
waves', and the first identified regular oscillation was around 10-12 Hz which
they coined "alpha" (Sect.\ref{sec:alpha-waves}).
{\bf IMPORTANT}: At a time, the brain does not produce a single wave; but there
is always a dominant one. It is important to note that when referring to an
"alpha state" or a "theta state", for example, we are not talking about the
exclusion of other brainwave patterns, rather we are referring to the brainwaves
that are most dominant. In a theta state the brain produces notably more theta
brainwaves, than delta, alpha or beta.
\begin{mdframed}
While EEG is not as quantitative as microelectrode recordings
(Sect.\ref{sec:micro-electrodes}), it has the advantage of noninvasively
measuring small voltage fluctuations in vivo resulting from current flows within
pyramidal neurons spanning the cortical gray matter.
\end{mdframed}
Throughout the day in your waking state, your EEG will
display all 5 types of brain waves at the same time. However, one will be
dominant depending on the state of consciousness that you are in
(Sect.\ref{sec:state-brain}).
\url{http://mentalhealthdaily.com/2014/04/15/5-types-of-brain-waves-frequencies-gamma-beta-alpha-theta-delta/}
\subsection{==== Gamma waves (25-100Hz)}
\label{sec:frequencies-gamma}
\label{sec:gamma-wave}
Gamma brain waves are a frequency pattern of normal brain activity that measures
between 25 and 100 Hz, with around 40 Hz being typical in humans.
Gamma waves were essentially unknown before the development of digital EEG
(electroencephalography) recorders; due to the limitation of analog EEG can
record only up to 25Hz. Gamma brain waves are the fastest brainwave frequency
with the smallest amplitude.
With 40Hz, the gamma wave originates in the \textcolor{blue}{thalamus and moves
from the back of the brain to the front and back again} 40 times per second.
It is believed that gamma waves are able to link information from all parts of
the brain by inducing synchronous firing in principal neurons (despite the
presence of axonal conduction delays and he limited axonal spread of many
interneurons); and not only that, but the entire brain is influenced by the
gamma wave.
The waves with frequencies in the range from 30-35Hz and above may be related to
consciousness - that is, the making of connections among various parts of the
brain in order to form coherent concepts. Gamma waves are important for
learning, memory and information processing.
It is suggested that Gamma wave is generated by fast-spiking
interneurons that expresses parvalbumin
(Sect.\ref{sec:parvalbumin-positive-interneuron}), though it is under
investigation.
Changes in gamma oscillations (20-50 Hz) have been observed in several
neurological disorders (Chap.\ref{chap:NeuroDiseases}), and recently suggested
its role in Alzheimer's disease (Sect.\ref{sec:gamma-wave-Alzheimer}).
There are 3 types of gamma oscillations, and they all involve interneurons:
(Roger Traub)
\begin{enumerate}
\item
\end{enumerate}
\subsection{==== Beta waves (12-40 Hz; 30 microVolts): awake (active)}
\label{sec:beta-wave}
These are known as high frequency low amplitude (i.e. 30$\mu$V) brain waves that
are commonly observed while we are awake, alert or actively processing information.
\begin{itemize}
\item frequency range: 12 Hz to 40 Hz; or some others define as 13-15 to 60Hz
\end{itemize}
Having too much beta may lead to us experiencing excessive stress and/or
anxiety.
Caffeine has been shown to increase beta waves. Amphetamines, Nicotine and
Cocaine will increase beta brainwaves.
Functionality:
\begin{itemize}
\item beta wave may be linked to motor and non-motor functions,
see how it is changed in CBT neural network in patients of Parkinson's
disease \citep{kondabolu2016}.
Exaggerated beta oscillations (15-30 Hz) is found within the cortico-basal
ganglia-thalamic (CBT) neural network of patients of Parkinson's disease (PD).
Beta oscillations are also found in the CBT circuits of patients with other
movement-related disorders, such as epilepsy and dystonia (6, 7), and in normal,
nonhuman primates (8, 9) and normal rodents (10, 11).
\end{itemize}
\subsection{==== Alpha waves (8-12 Hz; 30-50 microVolts): awake (relax)}
\label{sec:alpha-waves}
Alpha waves is a form of neural oscillations
(Sect.\ref{sec:neural-oscillations}) and were first found among any other waves
and best studied. Alpha waves are typically found in people who are awake but
have their eyes closed and are relaxing or meditating; i.e. once the eye closed
the brain changes from beta (Sect.\ref{sec:beta-wave}) to alpha.
This frequency range bridges the gap between our conscious thinking and
subconscious mind.
\begin{itemize}
\item in thalamic pacemaker cell (Sect.\ref{sec:thalamic-interneurons})
\item posterior and occipital regions
\item frequency range: 8Hz to 12 Hz
\item nadir-to-peak (i.e. amplitude): about 30-50 $\mu$V.
\end{itemize}
L-Theanine, an amino acid found in green tea, has been found to increase alpha
brainwave activity. Alcohol and cannabis increase alpha brainwaves.
Too much alpha activity could leave you in a dreamy state, tired and unable to
concentrate or focus on work or study.
\subsection{==== Theta waves (4-8 Hz; 50-100 microVolts)}
\label{sec:frequencies-theta}
\label{sec:theta-wave}
Theta waves are associated with memory, emotions, and activity in the limbic
system.
\begin{itemize}
\item frequency range: 4Hz to 8 Hz
\end{itemize}
Too much Theta could result in attention deficit problems and hyperactivity.
\subsection{==== Delta waves (0-4 Hz; 100-200 microVolts)}
\label{sec:frequencies-delta}
\label{sec:delta-wave}
This slowest wave is associated with the deepest levels of relaxation and
restorative, healing sleep. Delta waves are observed when individuals are in
deep sleep or in a coma. They are found most often in infants as well as young
children. As we age, we tend to produce less delta even during deep sleep.
\begin{itemize}
\item frequency range: 0Hz to 4 Hz
\end{itemize}
\subsection{spindle wave (8-14 Hz; 50-150 microVolts)}
\label{sec:spindle-wave}
Sleep spindle is a burst of oscillatory brain activity visible on an EEG that
occurs during stage 2 sleep (i.e. N2 of NREM - Sect.\ref{sec:NREM}) with
frequency 8-14Hz or 11-16Hz. Together with K-complexes
(Sect.\ref{sec:K-complex}) they are the hallmarks of NREM sleep.
Sleep spindles generally last 1 to 2 seconds. They are generated by interactions
between thalamic reticular nucleus and cortical neurons, i.e. rhythmic
discharges of neurons throughout the thalamocortical system that potentiate
cortical synapses.
While spindles occur throughout NREM sleep, spindles during slow-wave sleep
(SWS) might be of special relevance for memory consolidation
(Sect.\ref{sec:sleep-dependent-memory-formation}).
\subsection{K complex (waveform during stage 2 of NREM)}
\label{sec:K-complex}
K complex is the waveform (occur more frequent) during stage 2 of NREM
(Sect.\ref{sec:NREM}) which was first discovered by Alfred Loomis in 1937.
When the stage 2 is reached, a large potential change occurs as the result of
tone stimulation which is called {\bf K wave} or {\bf K complex}.
This is the largest event found in healthy human EEG.
It is considered interesting and is quite rare as K complex can be evoked by
external stimulus (especially auditory stimuli) or can also appear
spontaneously.
\begin{itemize}
\item first a brief negative high voltage peak:
around 100$\mu$V
\item then a slower positive complex at around 350 and 550 ms
\item finally a negative peak at about 900 ms
\end{itemize}
K complex occurs roughly every 1.0-1.7 minutes; followed by spindle wave
(Sect.\ref{sec:spindle-wave}).
Trigger:
\begin{enumerate}
\item nothing (spontaneous)
\item external stimuli: sounds, touches on the skins
\item internal stimuli: inspiratory interruptions
\end{enumerate}
Location:
\begin{itemize}
\item generally in widespread cortical locations
\item predominantly in the frontal parts of the brain
\end{itemize}
\section{Potential field: LFP vs. MUA}
\label{sec:potential-field}
\label{sec:field-potential}
%\section{LFP (in vivo microelectrodes) vs. MUA}
The field potential amplitude was defined as the average of the amplitude from
the peak of the early positivity to the peak negativity, and the amplitude from
the negativity to the peak late positivity (Alger \& Teyler, 1976).
\begin{equation}
\text{field potential} = \frac{
\begin{array}{l}
\text{\small{amplitude from peak-first-positive to
peak-negative} } + \\
\text{\small{amlitude from peak-negative to
peak-second-positive}}
\end{array}
}{2}
\end{equation}
To enable this recording of potential field of the electrophysiological signal
generated by the summed electric current flowing from multiple nearby neurons
within a small volume of nervous tissue, LFP is used (Sect.\ref{sec:LFP}).
The local field potential (LFP) and multiunit activity (MUA) are
invasive technique for extracellularly recorded signals that describe local
neuronal network dynamics.
In vivo recordings of neural activity with metal microelectrodes
depict fluctuations of extracellular voltage, where the high- and
low-frequency components, respectively, reflect multiunit activity
(MUA) and local field potential (LFP) in a region.
There are two types: population spiking and subthreshold activity. Usually, the
former type of activity, known as multiple-unit activity (MUA), is estimated by
examining the power variation of the signal in the high-frequency range
(typically 400-3000 Hz), whereas the so-called local field potential (LFP) is
assessed by the power variation of the low-frequency range (e.g., 1-250 Hz)
\subsection{Local Field Potential (LFP): (subthreshold)}
\label{sec:LFP}
\label{sec:local-field-potential}
Local field potentials are signals made by the combined activity of a group of neurons.
% Local field potentials (LFPs) reflect subthreshold integrative processes that
% complement spike train measures.
Many studies use the recording of local field potentials to investigate brain
function and dysfunction. However, interpreting a local field potential, i.e.,
what is actually measured, is not as straightforward as it seems (Bernard,
2018).
\begin{itemize}
\item brain cells that allow ion flow through their membrane can generate an
electrical field, usually in the form of a sink/source dipole-
Sect.\ref{sec:dipole-in-brain}
\end{itemize}
The invasive technique LFP (using microelectrodes) measures extracellular
electrical potential, in a local region of the brain, which is a massed
(subthreshold and spiking) neural signal obtained by low pass-filtering (usually
with a cutoff low-pass frequency in the range of 100-300 Hz) -
Sect.\ref{sec:brain-waves}.
It is suggested that LFP signals are extremely local, i.e. approximately 200-400
$\mum$ of the recording electrode in the cortex (Katzner et al., 2009 and Xing
et al., 2009). However,
many prior studies, which suggest that LFPs spread laterally over distances of
600-1000 $\mum$ (Berens et al., 2008), 2-3 mm (Nauhaus et al., 2009 and Wang et
al., 2005), 5 mm (Kreiman et al., 2006), and vertically over centimeter scales
(Schroeder et al., 1992).
The neural signals commonly measured with extracellular microelectrodes consist
of time-varying spatial distributions of action potentials ("spikes")
superimposed on relatively slow varying field potentials, which relate well to
subthreshold integrative processes in areas such as dendrites that are otherwise
inaccessible. Population spiking and subthreshold activity can be to some
extent studied distinctly by using band-separation techniques.
The LFPs is a broadband signal that captures variations of neural population
activity over a wide range of time scales. The wide range of time scale that LFP
signal capture is particularly interesting from the neural coding point of view,
because, it opens up the possibility to investigate whether there are privileged
time scales for information processing, a question that has been hotly debated
over the last one or two decades.
On the one hand, the presence of a wide spectrum of activity could imply that
there is no privileged scale for information representation, because information
is evenly spread over all scales. It has been suggested that the neuronal
activity is largely scale free.
LFPs have been neglected for a few decades because in-vivo neurophysiological
research focused mostly on isolating action potentials from individual neurons.
LFPs are being used more widely to study the dynamics and the function of neural
circuits under different conditions.
The LFP spectrum had a very wide band with fluctuations ranging over the entire
frequency range analysed. Population spiking and subthreshold activity can be
to some extent studied distinctly by using band-separation techniques.
Using power spectrum analysis, the highest LFP power was at low frequencies (<
10 Hz), and the power decreased steeply at increasing frequencies.
LFPs, with their different band-limited components (known e.g. as alpha, beta or
gamma bands) provides unique windows onto integrative excitatory and inhibitory
synaptic processes at level of neural population activity.
LFP is sensitive to subthreshold integrative processes and carries information
about the state of the cortical network and the local intracortical processing,
including the activity of excitatory and inhibitory interneurons and the effect
of neuromodulatory pathways.
These contributions are almost impossible to capture using spiking activity from
only a few neurons.
Cortical LFPs typically contain a very broad spectrum of oscillations or of
fluctuations of neural activity, that span a wide range of frequencies ranging
from less than one Hz to one hundred Hz or more.
This broad band range of activities most likely reflects contribution of several
different neural processing pathways. Such different components are believed can
be separated easily from LFP data. Therefore, recording LFPs allows the
empirical examination and separation of different and potentially independent
information channels participating in neural information processing.
LFPs have also a drawback. Due to the multiple neuronal processes that
contribute to them, the LFP is a partly ambiguous signal and is more difficult
to interpret than spikes.
There are two things we can investigate with LFP signals: {\bf power} and
{\bf phase} of different LFP frequency bands.
\begin{enumerate}
\item power
\item phase:
This can be done by dividing the phase range into quarters, and then by tagging the spikes
with a label indicating the phase quadrant at which they were emitted.
\end{enumerate}
LFP reveal synaptic inputs activity (weighted sum of changing membrane potential
along dendritic branches and soma),
%LFP represents the summed activity of a group of neurons closed to each other,
Fig.\ref{fig:LFP}.
% It illustrates how synchronized patterns of action potentials
% may result in macroscopic oscillations that can be measured outside the scalp.
\begin{figure}[hbt]
\centerline{\includegraphics[height=5cm,
angle=0]{./images/LFP.eps}}
\caption{(A) each dot represents an individual AP of a neuron (with 10Hz neural
oscillations); (B) the LFP reflecting their summed activity}
\label{fig:LFP}
\end{figure}
The LFP, the low-frequency (<500 Hz) content of the raw recording, is believed
to be generated by membrane currents of the neurons in the local neighborhood of
the recording electrode.
\subsection{-- visual stimulus}
Natural visual stimuli are characterized by both "what" aspects (image
properties such as contrast or orientation which are defined by the relationship
between visual signals simultaneously presented at different points in space)
and "when" aspects, describing the temporal variations of the various image
features.
The result below suggest both high-gamma and low frequencies of LFPs convey
information; but they don't carry the same information.
Belitski et al. (2012) showed that he most informative LFP frequency ranges were
1-8 and 60-100 Hz. Indeed, the authors found that the redundancy between the
information carried by the power of high and low frequencies was nearly zero
(Mazzoni - Logothetis - Panzeri, 2013). In constrast, the information carried by
different frequencies range of gamma band are highly redundant, i.e.
suggesting that all frequencies in the gamma range reflect largely the same
network phenomenon. The inforamtion of spike rate is largely (but not
completely) carried by gamma band, i.e. the information carried by lower
frequencies LFP is independent information with respect to spike rates.
Intermediate frequencies do not carry any information.
The bandpassed LFP responses (in the [1-5 Hz], [28-32 Hz] and [72-76 Hz]
frequency range respectively, at different stimulus, e.g. (for visual stimulus)
different movies.
\begin{enumerate}
\item movie elicited LFP pattern is modulated by different movies:
show in , both in the low frequency (1-5Hz) range and in the [72-76 Hz]
range within the high gamma region.
\item LFP waveforms in the intermediate frequency range [28-32 Hz] could not
be reliably associated to the movie time course.
\item In visual cortex (V1 region): the spike rates clearly
encoded the movie time course.
The high spike rate episodes were associated more closely with episodes of high
LFP power in the high-gamma LFP frequency range than at lower LFP frequencies,
suggesting that {\bf gamma LFPs may be more closely related to the
stimulus-modulated spiking activity} than low LFP frequencies.
\end{enumerate}
During stimulation with naturalistic dynamics (i.e. showing different
movies), visual cortex develops slow fluctuations which are informative about
the external world and can be measured by recording LFP. The LFP is represented
in the form of power, and also phase in Fourier transform. The power of LFP
signals for a given frequency band such as gamma band definitely encode
information. Another quesiton is the role of LFP phase.
\textcolor{red}{How about phase of firing, i.e. can we use LFP phase at which
spike were fired to disambiguate different movie scenes eliciting the same
firing rate?}
% In visual stimuli, the question is how the power of different LFP frequency
% bands encoded the stimuli computing the information that the LFP power carries
% about which scene was being presented.
\subsection{-- compute LFP from model network}
An example of neural network is given in
Sect.\ref{sec:cortical-network-AMPA-GABA}.
In order to compare simulation and experimental results, we needed to compute
simulated LFPs from the model network.
\begin{enumerate}
\item The simplest model of LFP consists in averaging the membrane potential of the
network neurons (Hill and Tononi, 2005; Xing et al., 2009).
Here, we assume that LFP is the signals from all neurons in the whole network.
This approximation, however, has the
disadvantage that it may slow down the synaptic potentials by an extra factor due to the low pass
filtering properties of the neural membrane, and that it might be unable in some circumstances to pick
effects potentially based on the interplay between inhibitory and excitatory
stimuli (Mazzoni et al.,
2008; Linden et al., 2010)
\item use weighted sums of the currents crossing the membrane, whether given
only by synaptic components (Esser et al., 2007), or by a wider range of
sources (Makarov et al., 2010).
This is better since a prominent contribution to real cortical LFPs arises from
current flows due to synaptic activity (Mitzdorf, 1985; Logothetis, 2003).
Example: with neurons of only 2 currents (AMPA and GABA), the simulated LFP
signal generated by the network as the sum of the absolute values of AMPA and
GABA currents (the model does not include other currents).
The model can then be considered as a two compartments model with a single
current on each compartment. The authors decided
to sum the absolute values of currents because AMPA synapses are usually apical
and GABA synapses are usually peri-somatic and thus their dipoles sum with the
same sign along the dendrite (Mazzro et al., 2013).
\end{enumerate}
The LFP signal was taken with a negative sign to be better compared with the
polarity of our experimental recordings.
Result:
\begin{itemize}
\item gamma power of the LFP increased monotonically with input strength
NOTE: Test with time-invariant constant inputs
These results are consistent with neurophysiological findings that grating
stimuli of increasing contrast (which is known to modulate the thalamic input to
V1 (Shapley et al., 1981; Derrington and Lennie, 1984)) indeed modulate also the
power of the LFP gamma band in V1 (Friedman-Hill et al., 2000; Henrie and
Shapley, 2005).
\item
\end{itemize}
\subsection{MUA (multiunit activity: spiking)}
\label{sec:MUA}
\label{sec:multi-unit-activity}
MUA, the high-frequency (>1000 Hz) portion of the recording, represents the
spiking of local neurons.
MUA is believed to reflect the output spiking activity of an ensemble of neurons
because it reveals action potentials of large pyramidal neurons.
\section{Signal from Hippocampus}
Because of its densely packed neural layers, the hippocampus generates some of
the largest EEG signals of any brain structure.
Ther are 2 major modes, each associated with a distinct waves of electrical
activity as recorded in EEG (Sect.\ref{chap:EEG}).
\begin{enumerate}
\item {\bf theta} rhythm: this mode appears during state of active, alert
(especially moving or locomotion) and during sleep of the brain.
EEG is dominated with large regular wave of 6-9 Hz
\item {\bf large irregular activity (LIA)}: this mode appears during slow-wave
(non-dreaming sleep) and during states of waking immobility such as resting or
eating.
EEG is dominated by sharp waves that are randomly timed large deflections of
the EEG signal lasting for 25-50 milliseconds. Sharp waves are frequently
generated in sets, with sets containing up to 5 or more individual sharp waves
and lasting up to 500 ms.
\end{enumerate}
\section{REM sleep}
\label{sec:REM_sleep}
PET studies seem to indicate that there is a correlation between blood flow in
the pontine tegmentum and REM sleep.
\section{Magnetic Resonance Imaging (MRI)}
\label{sec:MRI}
MRI has an advantage over CT in being able to detect flowing blood and cryptic
vascular malformations. It can also detect demyelinating disease, and has no
beam-hardening artifacts such as can be seen with CT
A powerful, uniform, external magnetic field is employed to align the protons
that are normally randomly oriented within the water nuclei of the tissue being
examined.
This alignment (or magnetization) is next perturbed or disrupted by introduction
of an external {\bf Radio Frequency (RF) energy}. After that, the nuclei return
to their resting alignment through various {\bf relaxation processes} (which has
their own {\bf relaxation time}) and in so doing emit RF energy. After a certain
period following the initial RF, the emitted signals are measured.
Fourier transformation is used to convert the frequency information contained in
the signal from each location in the imaged plane to corresponding intensity
levels, which are then displayed as shades of gray in a matrix arrangement of
pixels.
IMPORTANT: By varying the sequence of RF pulses applied and collected, different
types of images are created.
\begin{itemize}