What Is Reification? When Abstract Concepts Become Real

Reification is the mental habit of treating something abstract, fluid, or human-made as though it were a solid, concrete thing that exists independently in the world. The word comes from the Latin res (thing) and covers a surprisingly wide territory: a logical error in everyday reasoning, a critique of how psychiatric diagnoses get mistaken for biological facts, a deliberate technique in computer science, and a long-running concern in philosophy about how capitalist economies shape the way people think. What makes reification worth understanding is that it operates quietly, turning metaphors and conventions into apparent realities that then constrain how we act.

The Logical Fallacy

At its simplest, reification is a reasoning error sometimes called hypostatization. You take an abstraction and start treating it as if it has substance, location, or causal power of its own. “Nature abhors a vacuum” is a classic example: nature is not a being with preferences, but the phrasing invites you to think of it that way. Metaphors like this are useful shorthand, but they become fallacious when someone draws conclusions based on the metaphor itself rather than on the underlying reality. If you argue that a policy must be wrong because “the market punished it,” you are treating “the market” as a sentient judge rather than as a shorthand for millions of individual transactions. The abstraction has been quietly upgraded to an agent.

This is closely related to anthropomorphization, where human-like qualities get projected onto non-human things. The difference is that reification can happen without the human-like qualities: you might treat “poverty” as a single tangible force rather than a label for a constellation of circumstances, without necessarily imagining poverty as a person. The danger in both cases is that the metaphor starts doing your thinking for you, and conclusions get built on top of a figure of speech rather than on evidence.

When Diagnoses Become Diseases

One of the most consequential places reification plays out is in psychiatry. The Diagnostic and Statistical Manual of Mental Disorders, the standard reference clinicians use to classify conditions like depression, ADHD, and schizophrenia, was designed to create a shared vocabulary so that different clinicians could communicate reliably about the same clusters of symptoms. The categories it established were practical tools, not claims about the underlying biology of the brain. Over time, though, those categories hardened in the minds of both clinicians and the public. As one widely cited analysis put it, the modern DSM system, intended to create a shared language, also creates “epistemic blinders” that impede progress toward valid diagnoses.1Annual Reviews. The diagnosis of mental disorders: the problem of reification

The practical concern here is real. When a diagnostic label gets reified, people begin to assume there is a single, discrete disease entity behind it, with clear biological boundaries separating it from health and from other disorders. Researchers start designing studies around the DSM category rather than around the underlying symptoms or mechanisms, which may cut across several categories. Clinicians may stop asking whether the category fits the patient and start fitting the patient into the category. For the person receiving the diagnosis, the reified label can become an identity rather than a description of current difficulties, something that is explored more fully below in the context of everyday psychological reification.

The Intelligence Debate

A parallel story has unfolded in the science of intelligence. The statistical construct known as “g,” or general intelligence, emerged from the observation that people who score well on one type of cognitive test tend to score well on others. The statistical pattern is robust. But whether that pattern reflects a single underlying thing in the brain, as opposed to a convenient mathematical summary of many overlapping abilities, has been debated for over a century. Some researchers have argued that the psychometric concept of general intelligence should be removed from cognitive and neurological sciences entirely, on the grounds that treating a statistical abstraction as a real property of brains has led the field astray.2PubMed. A neuropsychological approach to intelligence

The reification problem here is not that “g” is useless. It predicts academic and occupational outcomes reasonably well. The problem is that once you name a statistical factor and start measuring it, people begin to talk about it as if they are measuring a substance. Intelligence becomes “a thing you have more or less of” rather than “a label we put on a pattern of test results.” That shift matters because it shapes how society thinks about education, opportunity, and human potential. A reified view of intelligence tends to encourage fixed thinking: you either have it or you don’t. A de-reified view invites questions about which specific abilities are involved, how they develop, and how context shapes performance.

Race as a Reified Category

Perhaps no domain illustrates the stakes of reification more starkly than the science of human biological variation. Racial categories were historically treated as natural, discrete groupings with deep biological roots. Decades of genetics research have demonstrated that human genetic variation is continuous and clinal, meaning it shifts gradually across geography rather than clustering into a handful of neat bins. Yet the categories persist in research, medicine, and everyday life, in part because they have been reified so thoroughly that they feel self-evident.

Work in the philosophy of science has shown how DNA forensics research, for instance, can reinforce racial reification by representing what is cultural or social as natural or biological, and what is dynamic and continuous as static and discrete.3The British Journal for the Philosophy of Science. The Biological Reification of Race Forensic databases sort individuals into racial categories to generate statistical probabilities, which can give the impression that those categories are biologically robust rather than administratively convenient. The downstream effects are significant: when clinicians assume that race is a meaningful biological variable rather than a social one with some loose correlations to ancestry, they may misinterpret health disparities or apply population-level guidelines to individuals in ways that do not fit.

How Language Does the Reifying

Reification is not just a thinking error; it is baked into the structure of language itself. One of the key mechanisms is nominalization, the grammatical process of turning a verb or adjective into a noun. “The company destroyed the forest” becomes “the destruction of the forest.” In that transformation, the action gets packaged into a thing, and the agent who did it can quietly disappear. Critical discourse analysts have pointed out that nominalization, along with the passive voice, serves important ideological functions by deleting agency and reifying processes.4Discourse & Society. The language of critical discourse analysis: the case of nominalization

This is not a conspiracy; it is a basic feature of how language works. But it means that reification is happening constantly in ordinary speech and writing, often without anyone noticing. Political and institutional language is especially prone to it. “Economic growth” sounds like a natural force; “specific people making specific policy decisions that increase GDP” does not roll off the tongue. Research in cognitive linguistics has explored how deverbal nouns (nouns derived from verbs, like “investigation” or “destruction”) oscillate between event readings and non-event readings depending on how thoroughly the underlying process has been reified in the speaker’s mind.5Zeitschrift für Wortbildung / Journal of Word Formation. Nominalization as Gradual Reification of Events: “-ion” Nominals between Event and Non-Event Readings In other words, the very grammar you use shapes how concretely you treat an abstraction.

Reification in Computer Science

Computer science borrowed the term reification and gave it an almost opposite connotation. In programming and knowledge engineering, to reify something is to deliberately turn an implicit concept into an explicit, manipulable object. The goal is not to commit a fallacy but to make abstract relationships available for computation.

In object-oriented programming, for example, a message passed between two software objects is normally just an ephemeral event. Reifying that message means turning it into an object in its own right, one that can be inspected, logged, redirected, or modified. Early work on computational reflection described this “message reification” approach alongside a related technique where every object can have a meta-object that monitors and describes its behavior.6ACM SIGPLAN Notices. Computational reflection in class based object oriented languages

A more recent application involves knowledge graphs, the large structured databases that underpin search engines, recommendation systems, and AI assistants. Knowledge in these graphs is stored as simple subject-predicate-object triples (for example: “Paris — is the capital of — France”). But sometimes you need to say something about that triple itself, like when the fact was recorded or how trustworthy the source is. Since the standard data format does not natively support metadata about a triple, engineers use a technique called RDF reification, which turns each triple into an entity that can itself be described.7PubMed Central. An empirical study on Resource Description Framework reification for trustworthiness in knowledge graphs The trade-off is that this process multiplies the amount of data considerably, since several statements are now needed to represent what was originally a single fact. Multiple competing approaches to RDF reification have emerged, each with different performance and expressiveness trade-offs.8Semantic Web. A survey on SPARQL query relaxation under the lens of RDF reification

The computer science usage is worth knowing about because it highlights something interesting: reification is not inherently bad. Making an abstraction concrete can be extremely productive when you do it knowingly. The problems arise when it happens unconsciously, when people forget that the concrete-looking thing started out as a metaphor, a convention, or a statistical summary.

Corporate Personhood and Legal Reification

Few examples of reification carry as much political weight as the legal treatment of corporations. Under U.S. law, corporations have gradually acquired many of the rights historically reserved for human beings: the right to free speech, to religious exercise, to due process. The corporation is, at bottom, a legal fiction, a convenient way of organizing economic activity so that a group of people can enter contracts, own property, and be sued as a single entity. But over time that fiction has been reified into something that functions as a kind of super-person. Legal scholars have argued that corporations have become forms of sovereigns themselves, in part by acquiring human rights and “personalities” and tethering them to the corporation’s inhuman attributes, such as potentially unlimited lifespan and vast financial resources.9British Journal of American Legal Studies. Bad Company: The Corporate Appropriation of Nature, Divinity, and Personhood in U.S. Culture

This is reification at its most politically charged. Nobody sat down and decided that corporations are literally people. Instead, a series of legal decisions, each one reasonable on its own terms, gradually extended rights from one context to another until the metaphor of “corporate personhood” began to function as a literal claim. Once the abstraction became concrete enough to bear constitutional rights, it became very difficult to walk it back, because any attempt to limit those rights looks like it is taking something away from a “person.”

Psychological Reification and Rigid Self-Images

Reification also operates at the personal level. When you say “I have anxiety” rather than “I am feeling anxious right now,” you are performing a small act of reification, turning a fluctuating emotional state into a stable possession. Research on psychological reification describes this as a communicative process by which dynamic mental experiences are linguistically transformed into rigid, seemingly objective things. It functions as a linguistic-cognitive mechanism that can foster rigid self-images, restrict psychological flexibility, and hinder change processes.10CEEOL. Communication and Information Processes in the Use of Psychological Reification for Improving Public Health

This connects to the psychiatric reification discussed earlier but operates at a different scale. Diagnostic labels from the DSM get reified at the institutional level; here, individuals reify their own psychological states through everyday language. The two processes reinforce each other. A person receives a diagnosis, adopts it as part of their identity, and then interprets all subsequent experiences through that lens. The label, which was meant to describe a pattern of current symptoms, becomes a permanent attribute. Therapeutic approaches that emphasize defusion (stepping back from thoughts and labels rather than merging with them) are, in effect, deliberate de-reification exercises, though therapists rarely use that word.

Reification in Philosophy and Political Economy

The philosophical pedigree of reification traces back most influentially to early twentieth-century Marxist thought, where it described how social relationships under capitalism come to appear as relationships between things. When you think of “the economy” as an impersonal force with its own laws rather than as the sum of human decisions and power dynamics, you are experiencing what philosophers in this tradition would call reification. The concept forged a connection between the analysis of capitalist domination and a particular stance toward the world: a detached, spectatorial posture in which people watch social processes unfold as though those processes were natural events beyond human control.11Philosophy & Social Criticism. Toward a political critique of reification: Lukács, Honneth and the aims of critical theory

A related line of analysis has looked at how the financial system exemplifies reification. When money appears to generate more money on its own, through interest, derivatives, and speculative instruments, the actual role of human labor in producing value is obscured. The abstraction of money becomes self-evidently real, and the social relationships it rests on become invisible. This “fetishism of money,” as one analysis describes it, facilitates the expansion of financial markets and prevents accurate analysis of the economic system.12Review of Radical Political Economics. Fetishism and Financialization

Anthropological work has pushed the concept even further, arguing that reification is not exclusively a capitalist or modern phenomenon but a human universal that takes different forms across cultures. On this view, reification and its complement, animation (treating things as alive), are two sides of the same coin. People everywhere turn concepts into things and things into agents; the process is a fundamental way of engaging with the world, a means of action and a tool for transformation.13Theory, Culture & Society. Reification and Fetishism: Processes of Transformation This framing suggests that the goal is not to eliminate reification entirely, which may be impossible, but to remain aware of when you are doing it and what it costs.

Seeing Things That Are Not There

Even your visual system reifies. In perception science, “reification” refers to the brain’s tendency to construct more spatial structure in a percept than is physically present in the stimulus. The most famous example is the Kanizsa triangle: three Pac-Man-shaped cutouts arranged so that your brain fills in the edges of a bright white triangle that is not actually drawn. You do not just infer the triangle intellectually; you see it, complete with illusory contours that appear brighter than the surrounding white background.

Computational models of vision have been developed to explain how these illusory contours form. One approach, known as directional harmonic theory, can account for the collinear contours seen in the Kanizsa figure, the orthogonal contours in the Ehrenstein illusion, and a range of illusory vertex percepts where multiple illusory contours meet.14PubMed. Directional harmonic theory: a computational Gestalt model to account for illusory contour and vertex formation The brain is not being sloppy; it is completing partial information in the most coherent way it can, using principles of boundary completion and surface filling-in that are wired into the layered circuits of the visual cortex.15Conscious Mind, Resonant Brain. How a Brain Sees: Neural Mechanisms

Perceptual reification is the only version of the concept where the process is genuinely automatic and non-optional. You cannot choose not to see the Kanizsa triangle. This makes it a useful reference point: it reminds you that the impulse to construct concrete things out of partial or abstract information is not just a cultural habit or a philosophical error. It is built into the hardware.