Even if one thinks they can hold alot of information, you can't hold
more information than you can hold in working memory, and generally
speaking, the human brain can't focus itself inward enough to rewire
the brain the way intensive training can.
I'd say what's essential is the limited stimuli (small set of letters,
etc), update frequency, dual back, and the up/down when you get things
right/wrong enough. The way it would train your brain is pretty
obvious from the difficulty standpoint.
I have noticed that before a training session on DNB I do sometimes
try to practise in my mind remember a random n-back sequence ...seems
to help if only to warm up those circuits.
You can do N-back offline:
http://community.haskell.org/~gwern/static/N-back%20FAQ.html#offline-n-back
I don't know how well playing such a game accords with meditation.
--
gwern
1. Grab a pack of cards. Ideally, the pack of cards would have 8
suits and 8 numbers per suit, but a standard 4/13 pack will do okay too.
2. Shuffle.
3. Pick N cards, one by one, look at them, then set them face down in
a pile.
4. Try to recall the suit and number of the card on the bottom of the
pile. Look at it. Score yourself.
5. Take another card from the deck, look at it, and put it on the top
of the pile.
6. Repeat steps 4-5 until there are no cards remaining in the deck or
you get bored.
7. Repeat steps 2-6 until you get bored.
Jonathan
> Well I'd say there's no way to "meditate" with working memory. It'd be
> hard to explain I guess, the point of working memory is you use it
> while _working_.
Trust me, people don't always use WM at work ;)
I get your drift, though. Working memory is short term memory that can
be consciously manipulated in a nontrivial way. Absent the features of
WM, simple short term memory can still hold the pieces of a puzzle, so
to speak, but cannot shuffle them around in the different combinations
required to find the solution. This is my basic understanding, at
least.
Meditative practices will generally yoke attention in some way,
possibly even some aspects of short term memory, but I don't think
that they load much the ability to do working memory manipulations.
For example, holding a mantra in your head, even if it is by means of
repeating the mantra, is a comparatively static mind state. You will
be maintaining the mantra in memory, and possibly even updating the
contents of memory, something that is more clearly a part of
meditations that ask you be mindful of momentary sensations. But I'd
tend to argue that you will not be operating on the contents of
memory, you won't be juxtaposing one chunk against another.
>To try and meditate using it somehow would mean
> trying to actively hold an updating list of information, which is kind
> of impossible on one's own.
This is actually possible, provided that you are doing the updates
yourself. Computers do it all the time: http://en.wikipedia.org/wiki/Linear_feedback_shift_register.
In DNB, you are asked to maintain an updating fixed-length list of
information, and at each update, make a comparison (i.e, perform an
operation) between certain elements in the list. A fibonacci-type
recursion over the integers modulo q would have these same basic
features. Note also that such a pseudorandom permutation of state
space would be sufficiently random to keep the task challenging; the
only easy way to know better than chance what the state will be like
far in the future is to actually perform the recursion.
>...update frequency, dual back, and the up/down when you get things
> right/wrong enough.
It's on these notes that contemplative tasks tend to fail. But working
at it with some discipline might make sure to keep the task steadily
challenging; and certainly discipline is kind of a necessary condition
anyway for getting something out of any training program,
contemplative, cognitive, or otherwise.
Still, computer software probably streamlines the cognitive task a
great deal by imposing a regular pace, and quite possibly that is a
good thing. Too much complication in the task could be discouraging,
ultimately acting more as distraction than as anything else.
I'm still pretty agnostic about the degree to which such an
internalized WM task might compare with DNB re transfer to general
cognitive performance. But it's good to know of such an easilly-
seeded, ultraportable WM exercise. WM, though it probably is a
cognitive bottleneck at many critical junctures, is something that we
probably don't strain too much at most moments of our lives, and in
that light is probably a good target for explicit training.
The linear feedback idea is interesting; I had thought of math
exercises, but all the ones that came to mind involved increasing
quantities or repetition or memorizing (the digits of pi, calculating
exponents of 2, doubling a seed repeatedly, etc.)
Wouldn't want to work on binary sequences but base 10 sequences, with
a easy update. Wonder what formula would work?
--
gwern
On Mar 22, 3:56 pm, Gwern Branwen <gwe...@gmail.com> wrote:
For me it was hard to keep doing this because my mind started to
wander after a short time and without any external stimulus that
pushed me to go on the game came to an end.
I have to admid that I didn't try it too hard back then.
After all it was just a game to pass some time while walking around or
taking the bus.