Skip to main content

Evidence Suggests that the Internet Changes How We Remember


A study says that we rely on external tools, including the Internet, to augment our memory.

The flood of information available online with just a few clicks and finger-taps may be subtly changing the way we retain information, according to a new study. But this doesn't mean we're becoming less mentally agile or thoughtful, say the researchers involved. Instead, the change can be seen as a natural extension of the way we already rely upon social memory aids—like a friend who knows a particular subject inside out.


 

 
Researchers and writers have debated over how our growing reliance on Internet-connected computers may be changing our mental faculties. The constant assault of tweets and YouTube videos, the argument goes, might be making us more distracted and less thoughtful—in short, dumber. However, there is little empirical evidence of the Internet's effects, particularly on memory.
Betsy Sparrow, assistant professor of psychology at Columbia University and lead author of the new study, put college students through a series of four experiments to explore this question. 

One experiment involved participants reading and then typing out a series of statements, like "Rubber bands last longer when refrigerated," on a computer. Half of the participants were told that their statements would be saved, and the other half were told they would be erased. Additionally, half of the people in each group were explicitly told to remember the statements they typed, while the other half were not. Participants who believed the statements would be erased were better at recalling them, regardless of whether they were told to remember them. 

Another experiment had subjects again typing predetermined statements into a computer, but this time, some were told that their statements would be saved in a specific folder on that machine. Participants were better at remembering the names of the folders a statement was stored in than they were at remembering the statements themselves. 

The experiments suggest that we are less likely to remember facts when we know they can be easily looked up online, the researchers say. This conclusion is an extension of an idea proposed some 30 years ago by Sparrow's mentor (and a coauthor of a paper describing the latest work), Daniel Wegner, of Harvard's psychology department. 

Wegner proposed the idea of "transactive memory" as a collective social memory of sorts. For example, if a friend has an exhaustive knowledge of Greek history, you can simply remember that The Iliad is Greek and that your friend knows about Greek things, rather than remembering who wrote the epic poem. Sparrow and Wegner say that the Internet may serve a similar function, acting as an extension of this external memory. 

Mary C. Potter, professor of psychology in MIT's Department of Brain and Cognitive Sciences, says the study supports the commonsense idea that we use external tools to remember information. She notes, however, that many of the results are at the threshold for statistical significance, and says the study should be seen as suggestive rather than conclusive.

Potter also wonders if the results may be due to sociological rather than psychological phenomena. When your friend whips out his smart phone to look up information about a band, this could be "because it's fun" rather than being about changes to how our brains store information, she says.

Nicholas Carr has been one of the leading voices in the debate. His book The Shallows, published in June, contends that the Internet is having a detrimental effect, an argument he supports with numerous scientific studies. He says Sparrow's study "indicates how flexible our brains are in adapting to our tools."

However, he's not convinced that this adaptation is positive. "It's critically important to remember that there's a difference between external memory and internal memory," he says. "If you're not internalizing ... then your understanding becomes less personal, less distinctive, and, I think, ultimately more superficial."

Sparrow, on the other hand, sees this adaptation as positive. She says our minds are molding to the Internet, just as they have in the past with technologies like the written word.

She's now trying to probe the benefits of this external memory with more experiments. Imagine a history student reading a dense passage, full of dates and names, about the American Revolution. Perhaps if the student is confident that the details will be available on the Internet, he will be better able to get a larger sense of why the revolution happened. Her intuition is that when we expect the details to be available later, we're better at looking for larger messages that might be obscured if we were preoccupied with minutiae.


Post Credit: Technology Review

Comments

Popular posts from this blog

Characteristics of a Good Programming Language

Till now there are many high level languages which are very popular, and there are others, which could not become so popular in-spite of being very powerful. There might be many reasons for the success of a language, but one obvious reason is the characteristics of the language. Several characteristics believed to be important with respect to making a programming language good are briefly discussed below. Simplicity A good programming language must be simple and easy to learn and use. For example, BASIC is liked by many programmers only because of its simplicity. Thus, a good programming language should provide a programmer with a clear, simple and unified set of concepts which can be easily grasped. It is also easy to develop and implement a compiler or an interpreter for a programming language that is simple. However, the power needed for the language should not be sacrificed for simplicity. The overall simplicity of a programming language strongly affects the readability of the pr...

Angular 4 and Firebase Authentication: Email/Password

In our  previous  article we saw how to create authentication module using Google identity provider. Now we will see how to implement Email and Password authentication using Firebase. We will use Bootstrap form to create intuitive user interface for sign-up and login using Email and Password. Step 1: Create signUp component. ng generate component signUp Step 2: Create custom form in sign-up.component.html file. The result of above code: Step 3: Add two functions for creating the user and login using Email and Password in src/app/providers/AFAuth.ts file. Step 4: Call createUserWithEmailAndPassword function in service from sign-up.component.ts. Step 5: Update routing configuration in app.module.ts  to include signUp component. Step 6: Update Login form to have Bootstrap form. The result of the above code. Step 7: Enable Email/Password component in Firebas...

Angular 4 and Firebase Authentication: Setup

If you have come to this article, it means you are keen to learn new technology and that too Firebase. I love Firebase because it provides all basic but important features of any web application. Take for example, authentication, which is cumbersome and risky if not implemented with utmost care. And when we have the integration of Angular and Firebase, it becomes a lot easier for a developer to build such crucial modules in less time with minimal efforts. In this article we will create a simple Angular application using Firebase. I am going ahead with the understanding that you know the benefits of Firebase and have little knowledge about it. There are plenty of posts out on the web if you are behind. Step 1: Install Angular CLI (if not installed). npm install -g angular-cli Step 2: Create new Angular 4 project. By default now angular CLI will create Angular 4 project so you need not fret. ng new firebase-authentication Step 3: Check whether the ne...