10

Thinking about experiments where participants perform visual search tasks, I remember hearing in a Cog Psych lecture that if the instructions of the task were of the form "find the element that has property X", the participants would accomplish the task faster and with greater ease than when the instructions were of the form "find the element that does not have property Y".

It was then discussed that this exemplifies one of the themes in cognitive psych: The cognitive processes handle positive information better than negative information. Is this positivity effect?

I wonder if there is something about the second task that is algorithmically more complex than the first. Would a computer show the same slow-down for these tasks? Anyone know of any research exploring this?

Roly
  • 445
  • 2
  • 7

5 Answers5

7

I would doubt that the effect you described is an example for the positivity effect, which is a form of attributional bias, rather than connected to basic perceptual phenomena.

Instead I think that the experimental results you described can be explained by a priming effect. Priming describes the phenomenon that the exposure to one stimulus influences the processing of following stimuli. If the first stimulus shares perceptual, semantic, or conceptual similarities with the next stimulus, processing is enhanced (positive priming). If it provides conflicting information, processing can be depressed (negative priming).

Would a computer show the same behavior for these tasks?

Attempts to explain (positive) priming effects usually discuss an activation of associated memory contents, which, in turn, lead to enhancements in the following processing steps.

Since memory access is often indeed a limiting factor of computer performance, priming effects can possibly observed with computers, too. Computer have different types of storage systems which differ in access speed (e.g., hard disc, RAM, cache). For instance, information that is (pre-)loaded into cache memory (which is limited) can be accessed faster than information that is stored on the hard disc. Since it is context dependent which information is in cache memory at a point in time (i.e., it depends on the things you are doing at the moment), memory contents connected to the things you do right now are probably accessed faster (because they are in the cache) than other memory contents, hence, a priming effect.

H.Muster
  • 2,625
  • 20
  • 30
5

Building on @JohnPick's answer and my comment, but being a little bit more formal. The difference can be explained by the difference between parallel versus sequential processing, and the difficulty of the predicate being evaluated. Your specific question is answered by Treisman (1985) (which I summarize in the second section) but I try to provide a more general explanation.

Basic idea

Whenever we say "does the element have property $X$", we usually pick a very simple property for $X$, which can be checked quickly. On the other hand a predicate like "does not have property $Y$" becomes something like "has propert $\neg Y$" and is usually a much more difficult property to evaluate. Thus, I expect the main problem is not in the negation, but the fact that $X$ is usually much faster to evaluate than $\neg Y$. In general, we would expect similar effects with other experiments that use a very easy property $X$ versus a very difficult but still positive property $Z$.

However, if this was the only factor, we would only see a constant-factor slow-down, which would we expect to be interpreted as quantitative but not qualitative slow down. This is where we throw in parallel processing. If we assume that the vision system is capable of highly parallel processing, but the difficulty of the property evaluation involved must be very low or we need to switch to sequential processing. In a computer, think GPU: the GPU can do many many simple calculations in parallel, but we have to use the slower CPU to do difficult computations one at a time.

Relevant literature support

Classic work like Treisman (1985) suggests that my assumption of very bounded computations being done in parallel, while more complicated properties require attention and sequential processing is a reasonable one. In particular, Treisman completely answers your question:

It suggests that search for the presence of a visual primitive is automatic and parallel, whereas search for the absence of the same feature is serial and requires focused attention.

Testing the theory with non-negative properties

To test my whole theory we can consider the following experiments. We present the participant with $N$ integers $r_1, ... r_N$ arranged randomly in the visual field, each integer is colored $c_1, ... , c_N$. We ask one of two possible questions:

  1. Property $X$: Name a green number, or
  2. Property $Z$: Name a number divisible by $3$.

As we increase $N$ from $1$ up to some reasonable limit, we get a function of reaction times $f_X(N)$ and $f_Z(N)$ for the two cases:

  1. If both predicates ($X$ and $Z$) are processed in the same way (i.e. ever both parallel or both sequential), then we expect that $\forall N \; \frac{f_X(N)}{f_Z(N)} \approx \frac{f_X(1)}{f_Z(1)}$. In other words, we expect just a constant slow-down from the fact that checking in a single number is green is easier than checking if it is divisible by $3$.

  2. If $X$ is processed in parallel, while $Z$ is not, then we expect $\forall N \; \frac{f_X(N)}{f_Z(N)} > \frac{f_X(N + 1)}{f_Z(N + 1)}$. In other words, as we add one more item to the visual field, the parallel processing is slowed down significantly less than the sequential processing.

Artem Kaznatcheev
  • 12,323
  • 5
  • 70
  • 164
  • Treisman did not explain this phenomenon in terms of different task difficulties. Rather she suggests differences in the activation of feature maps. For the "Find X" task, she assumes that the feature map for X shows a well defined focused activation spot, whereas, for the "Find ~X" she assumes that activity spreads all over this feature map with only a small decrease at the position of the target. – H.Muster May 24 '12 at 06:41
  • @H.Muster I am not saying she explained it in terms of task difficulties, I am suggesting that her work makes my assumption "a reasonable one". In that there are two types of processing observed: highly parallel pre-attentive and serial post-attentive. I think my answer is structured pretty poorly right now, and I will try to restructure by moving the Treisman answer to the top and my conjecturing and analogies below. – Artem Kaznatcheev May 24 '12 at 16:32
  • But your theory explains the phenomenon in terms of differences in task difficulties (you argue that not-Y usually is more difficult to evaluate). However, the phenomenon is about the difference between evaluating X and not-X, that is, there is no difference in task difficulty. – H.Muster May 24 '12 at 20:42
  • @H.Muster not-X is almost always a more difficult task than X. – Artem Kaznatcheev May 24 '12 at 23:13
  • That's not what Treisman said. She just observed that people are faster "finding a red square" compared to "finding something that is not a red square". Actually, the fact that the difficulty of the tasks similar makes this observation interesting. If the tasks would differ in difficulty, this observation would be rather trivial, wouldn't it? – H.Muster May 25 '12 at 05:57
  • I'd like to add that I don't think cogsci here should be used as an opportunity to entertain 'pet' theories about cognitive processing, so interesting as Artem's ideas are, perhaps the discussion should be more focused on the theory, as H.Muster is suggesting. Having read Artem's suggestions, they seem interesting, but it's clear he is sketchy on some parts of the literature. Artem, perhaps you should write a paper on this and submit it somewhere instead? – vizzero Jun 02 '12 at 18:33
  • @vizzero thanks for the suggestion, but the goal of my answer was to point out that there is a distinction between parallel and sequential processing of information in search tasks (as was pointed out by Treisman in 1985). If you follow the references forward, you can find further examples. The testing section is just a long-hand way of explaining how constant-factor equivalence (and basic asymptotic analysis) works, and how you could start to check parallel-vs-serial in an experiment. Note that this is a pretty standard way to do these tests. – Artem Kaznatcheev Jun 02 '12 at 18:43
  • The only 'self-theorizing' is that "not" is not an essential property. But if you think the answer is incorrect, or does not answer the question, then I welcome the downvote. I personally think @H.Muster gave a better answer to this question, and I am not 100% sure why OP accepted my answer, apart from maybe the reference to Treisman that completely answers his specific question. – Artem Kaznatcheev Jun 02 '12 at 18:43
  • 1
    Actually I think that the reference to Treisman makes your answer the best one. Nevertheless, everything else in your answer that does not come from Treisman is not backed up by academic research and, therefore, is not what a good answer at CogSci should be. – H.Muster Jun 03 '12 at 17:13
  • Ouch, let's not go down the route of parallel/serial search - that debate certainly didn't begin or end with that 1985 paper, and is continuing to this day. The only issue I would raise is that the literature has moved on considerably from then so it may be a bit misleading to point to it as a starter. – vizzero Jun 06 '12 at 00:49
  • @H.Muster i agree with you. artem is making stuff up as he goes along here. inappropriate use of citations to support your own math –  Feb 01 '14 at 19:18
4

As others have already noted this doesn't seem like a positivity effect. However, what you are describing is an asymmetry in search. This means that it's easy to do things one way (looking for a specific feature) than the other (looking for the absence of a specific feature).

There's a great introduction and review of the literature relating to this available in a published paper which is also online here:

http://search.bwh.harvard.edu/pdf/IntrotoSearchAsym.pdf

Note also that the paper I've linked to comes from a special issue of a journal in which there are several other papers which deal with search asymmetries.

UPDATE: New paper just out, on exactly this topic: http://psycnet.apa.org/journals/xhp/38/3/580/

vizzero
  • 1,135
  • 8
  • 11
3

This is off the top of my head. No references to the literature.

Assuming the elements are all in the subjects's present visual field, the brain interprets the two tasks as:

  • Positive task: Property $X$ is somewhere in your present visual field and thus can be seen immediately. Tell me which element has that property. [2 steps]
  • Negative task: Search the $n$ elements in your visual field until you find the one that doesn't have property $Y$. [$\frac{n}{2}$ steps, on average]

In contrast, an unintelligent computer program would use an exhaustive search algorithm for both tasks and thus require $\frac{n}{2}$ steps, on average, for either task.

Jeromy Anglim
  • 30,741
  • 11
  • 93
  • 221
John Pick
  • 2,193
  • 1
  • 19
  • 23
  • this is not a fair comparison between human and computer. You are allowing a human to do parallel processing in the first case by saying "thus can be seen immediately" while you force the computer to do only sequential processing. This would be a poor model. – Artem Kaznatcheev May 24 '12 at 03:02
3

I wouldnt call it a positivity effect. Its rather a "semantic congruity" effect. Selection tasks in which the subject is supposed to select an option with a particular property are quicker than those in which she is supposed to select an option without the property. However, rejection tasks in in which she is supposed to select an option with the property are slower than those in which she is supposed to select those without the property. Its the compatibility between the task (selection vs rejection) and the characteristics of the objects (contains the property vs does not contain the property) that really determine decision time.

Birnbaum and Jou ("A theory of comparative response times and difference judgments", 1990) have a discussion of this, with appropriate citations.