In a world that seems ever more fragmented and divided, the political importance of domestic manufacturing has risen sharply. Politicians across advanced economies now emphasise the security of supply chains, talk of “bringing jobs back home,” and stress the national pride associated with making physical goods within their borders. Whether it is the United States under its CHIPS and IRA Acts, or the United Kingdom with its renewed industrial strategies, manufacturing has become a focal point of economic policy. This shift reflects both geopolitical tensions and public anxieties around dependence on foreign production.
Yet there is an apparent contradiction at the heart of this new manufacturing enthusiasm. Manufacturing today represents just a small part of economic activity in advanced economies. In the United States, manufacturing accounts for around 11% of Gross Value Added (GVA); in the UK it is even lower at 8%. The vast bulk of output and consumption comprises services. For example, UK household consumption of services is roughly three times as large as household spending on goods. This raises the question: are politicians misguided in their new-found love of making physical stuff?
One tool economists use to gain deeper insight into such questions is input-output analysis. This technique maps out how different sectors of the economy depend on each other – how manufacturing purchases services as inputs, and how services use manufactured goods in return. While real-world applications deploy large tables covering hundreds of industries, the core idea can be illustrated with a simple two-sector model.
In such a framework, we set up a matrix where each entry shows the fraction of a sector’s output required by another sector as an input. Alongside this sits the final demand vector, representing exogenous spending by households, government or exports. Solving the model involves inverting the matrix – essentially resolving a system of simultaneous equations to find the total output of each sector needed to satisfy all final and intermediate demands.
The indirect effect captures how manufacturing activity boosts output in other sectors through its supply chain purchases – for example, when car manufacturers buy steel or design services. In contrast, the induced effect arises when workers employed directly or indirectly spend their wages on goods and services in the broader economy, supporting further output and jobs in retail, restaurants, housing, and beyond.
Though the maths sounds intimidating, input-output models are a fundamental example of what economists do: build simplified representations of the economy to uncover important relationships.
Effect Index
Direct 1.00
Indirect 0.68
Induced 0.95
Total 3.14
Takeaways
The big idea that emerges is this: manufacturing turns out to be much more important than first impressions suggest. Its direct share of GDP may be small, but its indirect effects – through supply chains – and its induced effects – through household spending of wages – generate a much larger economic footprint. In our stylised example, a 1% rise in manufacturing demand leads to a total increase in output that is more than three times the initial shock. In other words, manufacturing’s contribution extends far beyond the factory gate.
Of course, this simplicity comes with qualifications. The model makes restrictive assumptions: fixed coefficients, no capacity constraints, and a static snapshot without dynamics or prices. Yet its power lies in clarity. It illustrates multiplier effects that are crucial for understanding economic interdependencies. An Oxford Economics study (April 2024) commissioned by the Manufacturing Technologies Association used UK input-output tables to estimate a Type II multiplier of 2.8, confirming that manufacturing’s GDP impact is almost three times its direct share.
In fact, as the study argues, manufacturing has an even broader role to play in 21st century economies. The sector acts as a crucial engine for innovation and productivity growth. It is the primary sphere where cutting-edge research and development are translated into tangible products and processes, often with spillover benefits across the entire economy. This innovation is not confined to the manufacturing sector itself; it provides the physical infrastructure and advanced goods that enable service sectors to thrive and evolve, from advanced medical devices, to green energy solutions and to high-performance computing hardware that is fuelling the AI revolution.
The “cloud” is not an ethereal concept but relies on vast data centres, sophisticated cooling systems, and enormous energy infrastructure — all of which require complex manufacturing processes to design, build, and maintain. Without a robust and innovative manufacturing base, advanced economies would struggle to meet their climate goals, harness the full potential of emerging technologies, or ensure a reliable supply of essential products.
The latest S&P Global PMI surveys offer a glimpse into current realities. The June 2025 survey for US manufacturing looked quite encouraging, showing an expansion in production and new orders, even if concerns about input cost inflation remain – but that’s another story for another post.
Source Code
---title: "Does Manufacturing Matter?"format: html: toc: false number-sections: false code-fold: true code-tools: true embed-resources: true css: /style.css theme: "" include-in-header: quarto_folding.htmlexecute: echo: false warning: false message: false---[← Back to Home](../index.html){.backlink}# Supply Chain StressIn a world that seems ever more fragmented and divided, the political importance of domestic manufacturing has risen sharply. Politicians across advanced economies now emphasise the security of supply chains, talk of “bringing jobs back home,” and stress the national pride associated with making physical goods within their borders. Whether it is the United States under its CHIPS and IRA Acts, or the United Kingdom with its renewed industrial strategies, manufacturing has become a focal point of economic policy. This shift reflects both geopolitical tensions and public anxieties around dependence on foreign production.Yet there is an apparent contradiction at the heart of this new manufacturing enthusiasm. Manufacturing today represents just a small part of economic activity in advanced economies. In the United States, manufacturing accounts for around 11% of Gross Value Added (GVA); in the UK it is even lower at 8%. The vast bulk of output and consumption comprises services. For example, UK household consumption of services is roughly three times as large as household spending on goods. This raises the question: are politicians misguided in their new-found love of making physical stuff?One tool economists use to gain deeper insight into such questions is input-output analysis. This technique maps out how different sectors of the economy depend on each other – how manufacturing purchases services as inputs, and how services use manufactured goods in return. While real-world applications deploy large tables covering hundreds of industries, the core idea can be illustrated with a simple two-sector model.In such a framework, we set up a matrix where each entry shows the fraction of a sector’s output required by another sector as an input. Alongside this sits the final demand vector, representing exogenous spending by households, government or exports. Solving the model involves inverting the matrix – essentially resolving a system of simultaneous equations to find the total output of each sector needed to satisfy all final and intermediate demands.The indirect effect captures how manufacturing activity boosts output in other sectors through its supply chain purchases – for example, when car manufacturers buy steel or design services. In contrast, the induced effect arises when workers employed directly or indirectly spend their wages on goods and services in the broader economy, supporting further output and jobs in retail, restaurants, housing, and beyond.Though the maths sounds intimidating, input-output models are a fundamental example of what economists do: build simplified representations of the economy to uncover important relationships.## Multiplier Results```{r}#| echo: true#| warning: false#| message: falseknitr::opts_chunk$set(echo =TRUE)library(matlib)# Define the calibrated A matrixA <-matrix(c(0.10, 0.10, 0.30,0.15, 0.25, 0.30,0.33, 0.67, 0.00), nrow =3, byrow =TRUE)colnames(A) <-rownames(A) <-c("Manufacturing", "Services", "Households")# Leontief inverseI <-diag(3)L <-inv(I - A)# Define baseline final demand vectorbaseline_FD <-matrix(c(20, 80, 0), nrow =3)# Calculate baseline outputbaseline_output <- L %*% baseline_FD# Compute 1% exogenous shock to manufacturingbaseline_manufacturing <- baseline_output[1,1]shock_size <-0.01* baseline_manufacturingshock_FD <-matrix(c(shock_size, 0, 0), nrow =3)# Calculate output changeshock_output <- L %*% shock_FDrownames(shock_output) <-c("Manufacturing", "Services", "Households")# Decompose effectsdirect_effect <- shock_sizeindirect_effect <- shock_output["Services", 1]induced_effect <- shock_output["Households", 1]total_effect <-sum(shock_output)# Create normalised table (Direct = 1.00)decomposition <-data.frame(Effect =c("Direct", "Indirect", "Induced", "Total"),Index =c(1.00, indirect_effect / direct_effect, induced_effect / direct_effect, total_effect / direct_effect))# Round for neat displaydecomposition$Index <-round(decomposition$Index, 2)# Print resultsprint(decomposition, row.names =FALSE)```# TakeawaysThe big idea that emerges is this: manufacturing turns out to be much more important than first impressions suggest. Its direct share of GDP may be small, but its indirect effects – through supply chains – and its induced effects – through household spending of wages – generate a much larger economic footprint. In our stylised example, a 1% rise in manufacturing demand leads to a total increase in output that is more than three times the initial shock. In other words, manufacturing’s contribution extends far beyond the factory gate.Of course, this simplicity comes with qualifications. The model makes restrictive assumptions: fixed coefficients, no capacity constraints, and a static snapshot without dynamics or prices. Yet its power lies in clarity. It illustrates multiplier effects that are crucial for understanding economic interdependencies. An <a href="https://www.oxfordeconomics.com/resource/the-true-impact-of-uk-manufacturing/"> Oxford Economics study</a> (April 2024) commissioned by the Manufacturing Technologies Association used UK input-output tables to estimate a Type II multiplier of 2.8, confirming that manufacturing’s GDP impact is almost three times its direct share.In fact, as the study argues, manufacturing has an even broader role to play in 21st century economies. The sector acts as a crucial engine for innovation and productivity growth. It is the primary sphere where cutting-edge research and development are translated into tangible products and processes, often with spillover benefits across the entire economy. This innovation is not confined to the manufacturing sector itself; it provides the physical infrastructure and advanced goods that enable service sectors to thrive and evolve, from advanced medical devices, to green energy solutions and to high-performance computing hardware that is fuelling the AI revolution.The "cloud" is not an ethereal concept but relies on vast data centres, sophisticated cooling systems, and enormous energy infrastructure — all of which require complex manufacturing processes to design, build, and maintain. Without a robust and innovative manufacturing base, advanced economies would struggle to meet their climate goals, harness the full potential of emerging technologies, or ensure a reliable supply of essential products.The latest <a href="https://www.pmi.spglobal.com/Public/Release/PressReleases"> S&P Global PMI surveys </a>offer a glimpse into current realities. The June 2025 survey for US manufacturing looked quite encouraging, showing an expansion in production and new orders, even if concerns about input cost inflation remain – but that’s another story for another post.