Share on Facebook Share on Twitter Email
Answers.com

pathological

 
American Heritage Dictionary:

path·o·log·i·cal

(păth'ə-lŏj'ĭ-kəl) pronunciation also path·o·log·ic (-ĭk)
adj.
  1. Of or relating to pathology.
  2. Relating to or caused by disease.
  3. Of, relating to, or manifesting behavior that is habitual, maladaptive, and compulsive: a pathological liar.
pathologically path'o·log'i·cal·ly adv.

Search unanswered questions...
Enter a question here...
Search: All sources Community Q&A Reference topics

1. [scientific computation] Used of a data set that is grossly atypical of normal expected input, esp. one that exposes a weakness or bug in whatever algorithm one is using. An algorithm that can be broken by pathological inputs may still be useful if such inputs are very unlikely to occur in practice.

2. When used of test input, implies that it was purposefully engineered as a worst case. The implication in both senses is that the data is spectacularly ill-conditioned or that someone had to explicitly set out to break the algorithm in order to come up with such a crazy example.

3. Also said of an unlikely collection of circumstances. “If the network is down and comes up halfway through the execution of that command by root, the system may just crash.” “Yes, but that's a pathological case.” Often used to dismiss the case from discussion, with the implication that the consequences are acceptable, since they will happen so infrequently (if at all) that it doesn't seem worth going to the extra trouble to handle that case (see sense 1).


Wiley Dictionary of Flavors:

Pathogenic (Pathological) Organism

Top

A living thing that produces a disease. See Starter Cultures, Chart 338.

or pathologic
  1. of, or pertaining to, pathology.
  2. causing, relating to, involving, or caused by disease.

Previous:pathogenicity island, pathogenic, pathogenesis-related proteins
Next:pathology, pathophysiology, pathway
  See crossword solutions for the clue Pathological.
Wikipedia on Answers.com:

Pathological (mathematics)

Top
The Weierstrass function is continuous everywhere but differentiable nowhere.

In mathematics, a pathological phenomenon is one whose properties are considered atypically bad or counterintuitive; the opposite is well-behaved. Often, when the usefulness of a theorem is challenged by counterexamples, defenders of the theorem argue that the exceptions are pathological. A famous case is the Alexander horned sphere, a counterexample showing that topologically embedding the sphere S2 in R3 may fail to "separate the space cleanly", unless an extra condition of tameness is used to suppress possible wild behaviour. See Jordan-Schönflies theorem.

One can therefore say that (particularly in mathematical analysis and set theory) those searching for the "pathological" are like experimentalists, interested in knocking down potential theorems, in contrast to finding general statements widely applicable. Each activity has its role within mathematics.

Contents

Pathological functions

A classic example is the Weierstrass function, which is continuous everywhere but differentiable nowhere. The sum of a differentiable function and the Weierstrass function is again continuous but nowhere differentiable; so there are at least as many such functions as differentiable functions. In fact, by the Baire category theorem one can show that continuous functions are typically or generically nowhere differentiable.

In layman's terms, this is because of the vast infinity of possible functions, relatively few will ever be studied by mathematicians, and those that do come to their attention as being interesting or useful will tend to be well-behaved. To quote Henri Poincaré:

Logic sometimes makes monsters. For half a century we have seen a mass of bizarre functions which appear to be forced to resemble as little as possible honest functions which serve some purpose. More of continuity, or less of continuity, more derivatives, and so forth. Indeed, from the point of view of logic, these strange functions are the most general; on the other hand those which one meets without searching for them, and which follow simple laws appear as a particular case which does not amount to more than a small corner.

In former times when one invented a new function it was for a practical purpose; today one invents them purposely to show up defects in the reasoning of our fathers and one will deduce from them only that.

If logic were the sole guide of the teacher, it would be necessary to begin with the most general functions, that is to say with the most bizarre. It is the beginner that would have to be set grappling with this teratologic museum.

Henri Poincaré, 1899

This highlights the fact that the term pathological is subjective or at least context-dependent, and its meaning in any particular case resides in the community of mathematicians, not necessarily within the subject matter of mathematics itself.

Prevalence

In cases of pathology, often "most" or "almost all" examples of a phenomenon are pathological, which is formalized by measures of size such as cardinality, measure (almost everywhere), probability (almost surely), or a generic property. For example, the set of rational numbers is countable (and has measure zero, and is a meagre set), but the set of irrational numbers is uncountable (and has full measure, and is a comeagre set): "almost all" real numbers are irrational, in these senses.

In this case, pathologies are not the rare exceptions but the most common. This is why finding pathological examples are so important: far from being relegated to the fringe of our thought, they should serve to guide our mathematical intuition.

Pathological examples

Pathological examples often have some undesirable or unusual properties that make it difficult to contain or explain within a theory. Such pathological behaviour often prompts new investigation which leads to new theory and more general results. For example, some important historical examples of this are the following:

\varphi(t) = \left\{\begin{array}{cc}e^{-\left(\frac{1}{1+t}+\frac{1}{1-t}\right)},&-1<t<1\\0,&\text{otherwise}\end{array}\right.
  • The Cantor set is a counterexample to the notion that a measure-zero set must be countable. The Cantor set is both measure-zero (i.e. has "length" 0) and uncountable.
  • The Dirichlet function is the function f defined such that f(x) is 1 if x is rational and 0 if x is irrational. This is a counterexample to the idea that every bounded function is (piecewise) integrable.

At the time of their discovery, each of these was considered highly pathological; today, each has been assimilated, which is to say, explained by an extensive general theory. These examples may prompt a reassessment of foundational definitions and concepts. Historically, this has led to cleaner, more precise, and more powerful mathematics.

Such judgments about what is or is not pathological are inherently subjective or at least vary with context and depend on both training and experience—what is pathological to one researcher may very well be standard behaviour to another.

Pathological examples can show the importance of the assumptions in a theorem. For example, in statistics, the Cauchy distribution does not satisfy the central limit theorem, even though its symmetric bell-shape appears similar to many distributions which do; it fails the requirement to have a mean and standard deviation which exist and are finite.

The best-known paradoxes such as the Banach–Tarski paradox and Hausdorff paradox are based on the existence of non-measurable sets. Mathematicians, unless they take the minority position of denying the axiom of choice, are in general resigned to living with such sets.

Other examples include the Peano space-filling curve which maps the unit interval [0, 1] continuously onto [0, 1] × [0, 1], and the Cantor set, which is a subset of the interval [0, 1] and has the pathological property that it is uncountable, yet its measure is zero.

Computer science

In computer science, pathological has a slightly different sense with regard to the study of algorithms. Here, an input (or set of inputs) is said to be pathological if it causes atypical behavior from the algorithm, such as a violation of its average case complexity, or even its correctness. For example, hash tables generally have pathological inputs: sets of keys that collide on hash values. Quicksort normally has O(n log n) time complexity, but deteriorates to O(n2) when given input that triggers suboptimal behaviour.

The term is often used pejoratively, as a way of dismissing such inputs as being specially designed to break a routine that is otherwise sound in practice (compare with Byzantine). On the other hand, awareness of pathological inputs is important as they can be exploited to mount a denial-of-service attack on a computer system. Also, the term in this sense is a matter of subjective judgment as with its other senses. Given enough run time, a sufficiently large and diverse user community, or other factors, an input which may be dismissed as pathological could in fact occur (as seen in the first test flight of the Ariane 5).

Exceptions

A similar but distinct phenomenon is that of exceptional objects (and exceptional isomorphisms), which occurs when there are a "small" number of exceptions to a general pattern – quantitatively, a finite set of exceptions to an otherwise infinite rule. By contrast, in cases of pathology, often most or all most all instances of a phenomenon are pathological, as discussed in prevalence, above – e.g., almost all real numbers are irrational.

Subjectively, exceptional objects (such as the icosahedron or sporadic simple groups) are generally considered "beautiful", unexpected examples of a theory, while pathological phenomena are often considered "ugly", as the name implies. Accordingly, theories are usually expanded to include exceptional objects – for example, the exceptional Lie algebras are included in the theory of semisimple Lie algebras: the axioms are seen as good, the exceptional objects as unexpected but valid. By contrast, pathological examples are instead taken to point out a shortcoming in the axioms, requiring stronger axioms to rule them out – for example, requiring tameness of an embedding of a sphere in the Schönflies problem. One may study the more general theory, including the pathologies, which may provide its own simplifications (the real numbers have properties very different from the rationals, and likewise continuous maps have very different properties from smooth ones), but will also in general study the narrower theory from which the original examples were drawn.

See also

External links

This article incorporates material from pathological on PlanetMath, which is licensed under the Creative Commons Attribution/Share-Alike License.


Best of the Web:

pathological

Top

Some good "pathological" pages on the web:


Math
mathworld.wolfram.com
 
 
 

 

Copyrights:

American Heritage Dictionary. The American Heritage® Dictionary of the English Language, Fourth Edition Copyright © 2007, 2000 by Houghton Mifflin Company. Updated in 2009. Published by Houghton Mifflin Company. All rights reserved.  Read more
The Jargon File's Guide to Hacker Slang. The Jargon File. Copyright © 2007.  Read more
Wiley Dictionary of Flavors. Copyright © 2008 by Wiley-Blackwell. Wiley and the Wiley logo are registered trademarks of John Wiley & Sons, Inc. and/or its affiliates in the United States and other countries. Used here by license.  Read more
 Oxford Dictionary of Biochemistry. Oxford University Press. Oxford Dictionary of Biochemistry and Molecular Biology © 1997, 2000, 2006 All rights reserved.  Read more
 Rhymes. Oxford University Press. © 2006, 2007 All rights reserved.  Read more
Bradford's Crossword Solver's Dictionary. Collins Bradford's Crossword Solver's Dictionary © Anne Bradford, 1986, 1993, 1997, 2000, 2003, 2005, 2008 HarperCollins Publishers All rights reserved.  Read more
Wikipedia on Answers.com. This article is licensed under the Creative Commons Attribution/Share-Alike License. It uses material from the Wikipedia article Pathological (mathematics) Read more

Follow us
Facebook Twitter
YouTube