Robert Solow
---
> [!infobox|wikipedia]
> # Robert Solow
>
> #### Biographical information
>
> | Table Header | Table Header |
> | ---- | --- |
> | Born | August 23, 1924, Brooklyn, New York, USA |
> | Died | December 21, 2023, Lexington, Massachusetts, USA |
> | Fields | Economics |
> | Known for | [[Solow-Swan-Model]] , Neoclassical Growth Theory |
> | Works| "A Contribution to the Theory of Economic Growth" (1956), "Technical Change and the Aggregate Production Function" (1957) |
> >[!wikiQ]
> "Over the long term, it's hard for a country to grow faster than the rate at which it adds capital, labor, and technology."
---
## Life
### Brief Overview
Robert Merton Solow was a distinguished American economist whose contributions to neoclassical economics fundamentally reshaped the understanding of long-term economic growth. Born in Brooklyn, New York, he pursued an academic career that made him one of the most influential figures in economics.
### Education
- **Harvard University (1940–1942)**: Studied sociology and anthropology before transitioning to economics.
- **Military Service (1942–1945)**: Served in the U.S. Army during World War II.
- **Harvard University (Post-War)**: Returned to Harvard to study economics under Wassily Leontief.
- **Doctorate (1947)**: Ph.D. in Economics from Harvard University.
---
## **Professional Career**
### **Primary Field**
Robert Solow's primary focus was on **macroeconomics**, with a specialization in growth theory and capital theory.
### **Related Fields**
- Productivity analysis
- Labor economics
### **Academic Positions**
- **Massachusetts Institute of Technology (MIT)**: Solow spent the majority of his academic career at MIT, where he was a professor and mentor to several future Nobel laureates, including Paul Krugman.
---
## **Theory or Contributions**
### **Major Theories, Discoveries, or Inventions**
- **Solow-Swan Growth Model**: Robert Solow and Trevor Swan independently developed similar models of economic growth in the mid-1950s, leading to what is now commonly referred to as the **Solow-Swan Growth Model**. This model introduced the concept of **steady-state growth** and highlighted the critical role of technological progress in driving long-term economic expansion.
- **Technical Change and the Aggregate Production Function (1957)**: Introduced a framework to measure the contribution of technological innovation to economic growth, now known as **Solow Residual**.
### **Impact**
Solow’s work influenced policymakers worldwide by underscoring the importance of investing in **technology**, **education**, and **research and development** to sustain economic growth.
---
## **Works and Honors**
### **Major Works**
1. **"A Contribution to the Theory of Economic Growth" (1956)**: Established the foundational Solow-Swan model of growth.
2. **"Technical Change and the Aggregate Production Function" (1957)**: Provided a quantitative approach to understanding technological progress.
3. Numerous academic papers on productivity, labor economics, and macroeconomic theory.
### **Notable Awards and Honors**
- **John Bates Clark Medal (1961)**: Awarded to an economist under 40 for significant contributions to economic thought.
- **Nobel Prize in Economic Sciences (1987)**: Recognized for contributions to economic growth theory.
- **National Medal of Science (1999)**: Honored for his influential work in economic science.
## **Legacy**
Robert Solow’s work remains foundational to modern economics. His models continue to guide discussions on growth, technology, and productivity in both academic and policy-making circles.
---
## Quotes
> [!quote|mark] Robert Solow
> "_Over the long term, it's hard for a country to grow faster than the rate at which it adds capital, labor, and technology._"
---
## **Sources**
1. **Nobel Prize Official Biography**: [nobelprize.org](https://www.nobelprize.org/prizes/economic-sciences/1987/solow/biographical/)
2. **MIT Economics Department Archive**: Historical records of Solow’s tenure at MIT.
3. **American Economic Association (AEA)**: Papers and discussions on Solow’s contributions.
4. **“A Contribution to the Theory of Economic Growth” (1956)**: Original publication by Robert Solow.
---
```dataviewjs
// Ensure 'fos' is treated as an array
let foss = Array.isArray(dv.current().fos) ? dv.current().fos : [dv.current().fos];
// Loop through each fos
for (let fos of foss) {
if (!fos) continue; // Skip if no fos exists
// Start the collapsible callout for this profession
let calloutHeader = `> [!dv]- **${fos}**\n`;
// Query pages matching the current profession
let results = dv.pages()
.where(p => (Array.isArray(p.fos) ? p.fos.includes(fos) : p.fos === fos)
&& p.file.name !== dv.current().file.name);
if (results.length > 0) {
// Add results as a list inside the callout
let links = results.file.link.array().map(link => `> - ${link}`).join("\n");
dv.paragraph(calloutHeader + links);
} else {
// Add a "No matching files" message inside the callout
dv.paragraph(calloutHeader + "> - No matching files found.");
}
}
```
```dataviewjs
// Ensure 'profession' is treated as an array
let professions = Array.isArray(dv.current().profession) ? dv.current().profession : [dv.current().profession];
// Loop through each profession
for (let profession of professions) {
if (!profession) continue; // Skip if no profession exists
// Start the collapsible callout for this profession
let calloutHeader = `> [!dv]- **${profession}**\n`;
// Query pages matching the current profession
let results = dv.pages()
.where(p => (Array.isArray(p.profession) ? p.profession.includes(profession) : p.profession === profession)
&& p.file.name !== dv.current().file.name);
if (results.length > 0) {
// Add results as a list inside the callout
let links = results.file.link.array().map(link => `> - ${link}`).join("\n");
dv.paragraph(calloutHeader + links);
} else {
// Add a "No matching files" message inside the callout
dv.paragraph(calloutHeader + "> - No matching files found.");
}
}
```
```dataview
table rows.file.link as "Files"
from ""
where any(this.tags) and any(tags) and length(filter(this.tags, (t) => contains(tags, t))) > 0
and file.name != this.file.name
group by tags
sort tags asc
```