Abstract generated by ChatGPT
Abstract generated by ChatGPT¶
This work develops a probabilistic formulation of the tendency for the labor content of commodities to decline over time. Let the specific price of a commodity basket be defined as , where denotes its monetary price and the amount of embodied labor. Comparing an initial basket with a cheaper basket , the analysis shows that if the monetary price decreases, the probability that the embodied labor also decreases is greater than one half. Under mild statistical assumptions, it follows that both the probability and the expected value of labor reduction are positive. By iterating this process across successive periods, the model predicts a long-run tendency toward declining labor requirements in commodity production. Monte Carlo simulations confirm the analytical results and illustrate the statistical regularity of the phenomenon. More broadly, the paper proposes an econophysical interpretation of economic dynamics, emphasizing probabilistic laws and emergent macroeconomic behavior instead of representative-agent equilibrium models.
Probabilistic Law of the Decrease in Labor Content¶
Let us work with the content of the appendix of the book How Labor Powers the Global Economy, specifically Appendix B.4 (Probabilistic Law of the Decline of Labor Content). To do so, let us begin by recalling some definitions:
Usable: Any object or service of use to human beings can be called a usable.
Gift of nature: Usables for which no input of human labor is used, directly or indirectly, to make them available. Examples of such usables are sunlight, wind, etc.
Product: A usable that does require direct or indirect input of labor for its creation. The kinds of direct inputs that go into a product are one of the following three: gifts of nature, labor, and previously produced products. Previously created products themselves require the same three kinds of direct input; by repeating this decomposition several times over, we are left with only two kinds of ultimate inputs: gifts of nature and labor.
Commodities: A special class of usables that presuppose highly abstract notions such as ownership and enforceable entitlement. A commodity is realized in a transaction of exchange or sale between a seller and a buyer. For a usable to become a commodity, therefore, it must be owned by the seller. While both products and commodities are usables, they are by no means identical categories; they merely overlap.
Commodity-product: The overlap between the two categories—products that are also commodities.
Money: A special kind of commodity—it is universal in the sense of being acceptable in exchange for any commodity.
Price: A sum of money exchanged for the transfer of ownership of the commodity.
Rent: The price of an entitlement to the use—often for a definite period of time—of some usable.
Loan of money: A special case of renting; the rent paid in this case is interest, whose rate is measured as a percentage (of the total sum lent) divided by a unit of time.
Labor power: The capacity to perform concrete labor tasks; it is a rather unique product. It requires both gifts of nature and labor as inputs. The latter includes the provision of education, training, shelter, as well as consumable products used to sustain the worker. But unlike any other product, labor power also produces an ultimate input: labor itself. In addition, labor power, being a component of an entire personality, unlike almost all major products, is “produced” outside the direct control of private firms, usually within the intimate family sphere. This is an important asymmetry that assigns to labor power a central role in the process of economic reproduction.
Let us now work with commodity-products, that is, goods produced by workers and bought and sold at various prices on the market. We want to investigate how price relates to labor time.
Over a period of time such as a year, a large quantity of products is bought and sold on the market. We may construct a list of all transactions within a given period of time and region as . These products are produced and exchanged under many different circumstances. Now suppose a transaction involving a product with labor content and an amount of money . We may then define a price rate for this individual product as , measured in dollars per hour, and we shall call this quantity the specific price.
Since prices are of central importance both for firms that produce and purchase commodities and for households that consume products, we are interested in characterizing prices across all transactions. Since each transaction involves a quantity of labor input, every transaction is the purchase and sale of a definite quantity of embodied labor.
Probability of Value Decline¶
Consider that we have a basket of commodity-products that may be mapped by a vector . Then, considering that the labor embodied in is given by , likewise indicates the monetary price of this basket. From this, we define the specific price of something as the relation of dollars per hour associated with that thing, that is, the specific price of the basket would be:
Let us consider that we have a basket and then find a cheaper basket . The new basket provides a cheapening factor:
Manipulating, we obtain:
Now, if we consider something similar with respect to the embodied labor:
Then, taking the logarithm:
We therefore want to know the probability that , or equivalently, that . This is the probability that the sum in the first bracket is greater than the sum in the second, that is:
Since , it follows that , that is, it will always add positively and contribute to making this term greater than . Therefore, the probability must be greater when containing this term than without it. In other words:
Now, considering that and are random values drawn from the same distribution, then the probability that . That is:
In other words, there is a probabilistic tendency for the embodied labor to decrease when the price falls. We assume that the values and constitute independent realizations from the same distribution , even under the condition .
Expected Value of Decline¶
In other words, it is assumed that the selection of baskets by monetary price does not introduce systematic bias into the distribution of the specific price .
Regarding expected values, we have:
Since the last two terms have the same expected value, given that and are independent realizations from the same distribution, it follows that:
since . Now, using the Jensen inequality for a concave function , we have that . Thus, taking , we obtain:
That is, for this to be possible we must have , which requires that . Therefore, there is also an average tendency for embodied labor to decline alongside the reduction in monetary price.
Long-Term Tendency¶
Now, if we replace it with a basket 2, we would have at a second moment:
Or, considering the process from the very beginning:
Generalizing, we may then write:
Taking the logarithm:
Now, considering that all are identically distributed, that is, drawn from the same distribution, then for any we have , since we have already shown that . Therefore, by the linearity of expectation , we may write:
Here we must make clear that is not equal to . For example, as seen before, . Since all are identically distributed, it is as though each were a random step (but with of moving forward), while represents the accumulated distance after several steps. If at each step we expect to advance by , then after steps we expect to have traveled . By analogy, it is as if, after observing many trajectories of steps, our walker had advanced on average by .
Now, looking at a single trajectory, by the Law of Large Numbers:
Or equivalently:
That is, a sufficiently long single trajectory tends to exhibit behavior close to the average behavior obtained over the set of all possible trajectories. As a result, the probability that the embodied labor decreases approaches 1.
To test this, a code was developed. Using a normal distribution with mean 100 and standard deviation 10, and performing 106 tests, we drew a and an from the distribution for each of the two commodities, then calculated . We were able to verify that in approximately of the cases in which the price falls, the embodied labor also falls. In this case, we also obtained on average a cheapening rate of embodied labor of .
To test whether, for , we have , we ran 10 simulations with 106 exchanges and calculated the ratio between the average over all these simulations and the result obtained from a single execution:
# @title
import numpy as np
N = 1000000
count = 0
Ds = []
P=[]
M=[]
L=[]
logs=[]
for _ in range(N):
# preço específico (sempre positivo)
psi1 = np.random.normal(loc=100, scale=10)
psi2 = np.random.normal(loc=100, scale=10)
# trabalho contido
L1 = np.random.normal(loc=100, scale=10)
L2 = np.random.normal(loc=100, scale=10)
# preços monetários
M1 = psi1 * L1
M2 = psi2 * L2
M.append(M1)
M.append(M2)
P.append(psi1)
P.append(psi2)
L.append(L1)
L.append(L2)
# definir D usando a cesta mais cara e a mais barata
if M1 > M2:
D = L1 / L2
else:
D = L2 / L1
Ds.append(D)
logs.append(np.log(D))
if D > 1:
count += 1
Ds = np.array(Ds)
logs = np.array(logs)
print(f"Podemos notar que :\nP(D>1) = {count / N:.2f} > 0.50")
print(f" <D> = {np.mean(Ds):.2f} > 1.00")Podemos notar que :
P(D>1) = 0.75 > 0.50
<D> = 1.09 > 1.00
# @title
import numpy as np
# -----------------------------
# parâmetros
# -----------------------------
num_traj = 10 # número de trajetórias
m = 1000000 # número de trocas por trajetória
traj_logs = []
# -----------------------------
# gerando trajetórias
# -----------------------------
for _ in range(num_traj):
logDm = 0
L=0
for _ in range(m+1):
# preço específico
psi1 = np.random.normal(loc=100, scale=10)
psi2 = np.random.normal(loc=100, scale=10)
# trabalho contido
L1 = np.random.normal(loc=100, scale=10)
L2 = np.random.normal(loc=100, scale=10)
# preços monetários
M1 = psi1 * L1
M2 = psi2 * L2
# troca para cesta mais barata
if M1 > M2:
D = L1 / L2
else:
D = L2 / L1
# acumulando log(D_i)
logDm += np.log(D)
traj_logs.append(logDm)
traj_logs = np.array(traj_logs)
# --------------------------------
# grandezas principais
# --------------------------------
# média ensemble
ensemble_mean = np.mean(traj_logs)
# trajetória típica
traj_typical = traj_logs[0]
# --------------------------------
# resultados
# --------------------------------
print(f"\nRazão entre <log(Dm)> e log(Dm) típico: {(ensemble_mean/traj_typical):.2f}")
Razão entre <log(Dm)> e log(Dm) típico: 1.00
What this section seeks to demonstrate, therefore, is that there exists a probabilistic tendency for cheaper commodities to contain less embodied labor. Defining the specific price as and comparing an initial basket with a new cheaper basket , we define , where means that the new basket contains less labor. Since the monetary cheapening factor enters positively into the inequality, it follows that , assuming that the specific prices and are independent realizations from the same distribution. Furthermore, we showed that the expected value also favors the reduction of embodied labor, , indicating an average tendency toward a decrease in embodied labor associated with the fall in monetary price. Finally, by successively iterating this process, we obtain
and, by the Law of Large Numbers,
which implies that, in the long run, a typical trajectory tends almost certainly toward the continuous reduction of embodied labor.
The idea is that although embodied labor and the specific price may initially be assumed to be independent random variables, this does not mean that they remain independent after conditioning on the observed monetary price. The central point is that the monetary price is defined by:
Thus, when we specifically select a cheaper basket, we are imposing the condition , that is, we are conditioning on the product of the two variables. This conditioning induces statistical dependence between and , even if they were originally independent. The reduction in the monetary price must result from at least one of the following possibilities: a) a reduction in ; b) a reduction in ; or c) a simultaneous reduction in both. Since we assume that has no systematic tendency between the compared baskets, it follows that part of the reduction in price tends probabilistically to fall upon . Therefore, the result
emerges not because there exists a direct causal relationship between embodied labor and the specific price, but because both enter multiplicatively into the determination of the monetary price.
Standard economic theory is based on rather rigid assumptions regarding the behavior of individual agents in the economy. It is assumed that agents adopt optimal actions with respect to various economic response functions, often visualized as ‘‘curves’’ that shift or intersect. The collective result of optimization by agents is a supposed equilibrium state in which opposing economic forces balance one another until disturbed by ‘‘external’’ factors. Frequently, microeconomic assumptions are transferred into macroeconomic modeling through a ‘‘representative’’ agent who optimizes on behalf of all individual agents.
In contrast, the probabilistic framework possesses radically different microeconomic foundations (indeed, almost indifferent ones!). Very few assumptions are made about individual agents, who are regarded as only weakly coordinated at the local level within a capitalist market economy. They operate in diverse ways, yet remain subject to certain fundamental economic constraints. If certain structural variables are considered to be in equilibrium, this is a statistical equilibrium, where even within such a state the microeconomic configurations remain subject to incessant change.
A central concept in standard economic theory is that of the ``production function.‘’ It supposedly specifies the technological relationship between the quantities of productive inputs and the outputs generated by a given firm. In practice, this relationship is quantified in monetary terms, such that is the value of the basket produced by the firm and is considered to be determined by a production function:
where is the value of capital and is the amount of direct labor time employed. The most commonly used production function takes the following form (the Cobb--Douglas production function):
where is a supposedly ‘‘technical’’ coefficient and is a parameter between 0 and 1. Through the lens of the production function, labor and capital become substitutable ‘‘factors of production.’’
It also conforms to the principles of income distribution in standard economic theory: each production agent receives an amount of wealth corresponding to what that agent creates. Capital and labor are here viewed as factors making independent ‘‘contributions’’ to production.
Although widely used, the production function is filled with deep theoretical problems: a) the individual production functions of all firms in the economy do not aggregate easily into a single one; b) there is overwhelming empirical evidence that average wages are above the theoretical ‘‘marginal product of labor’’ in most capitalist economies. Thus, the production function serves more as an exercise in curve fitting than as a modeling of underlying laws that would provide genuine predictive power.
In contrast, the probabilistic framework does not rely on any assumptions that firms possess well-behaved production functions. Starting from a few basic postulates, it generates theoretically consistent and empirically testable claims.
We have already discussed how to calculate a measure of the embodied labor contained in a basket of goods, and we now show a probabilistic connection between market price and the law of decline of embodied labor, which is considered a central dynamic force within the capitalist economy.
Upper Limit¶
Considering as the labor added during the year, then the embodied labor contained in the basket representing the accumulated material wealth of a region may be approximated, for example, by:
There is therefore a limit to (the rate of decline of embodied labor), since otherwise all material wealth could be produced by a very small quantity of labor. Insofar as such assets were accessible on the market, they would rapidly cease to remain concentrated, and the dependence of households on wages paid by capitalist firms would soon disappear.
Let us investigate what this limit is. Consider changes in wealth from a year to a year . Part of this wealth is destroyed or consumed, so that only a remaining wealth persists. That is, part of the embodied labor contained in the initial stock, , is transformed into .
In addition, new products are produced and accumulated each year, so that a portion of is accumulated. This portion has as its upper limit the part of the surplus not consumed by the labor force, , where is the fraction of embodied labor consumed by the labor force as remuneration. We are simplifying here to the scenario in which the labor added remains unchanged from one year to the next.
If material wealth does not decline, we may express accumulation as:
We may then write:
, that is, the embodied labor in undergoes a decline of from one year to the next.
, where is the rate of material decline, that is, the material fraction of that was consumed.
Then:
Substituting:
Or equivalently:
Empirical data indicate that , that is, accumulated material wealth is approximately five times the labor added to the economy during the year. Taking an estimated material depreciation rate of to , let us adopt , together with a wage share on the order of . Then .
That is, if the rate of reduction of embodied labor in commodities exceeds approximately per year, the labor content of material wealth will tend to decline persistently. This implies a growing difficulty for the reproduction of capitalist accumulation, since the system depends on living labor as the source of value and surplus-value.
Paradoxically, this reduction in labor content may represent an advance from a technical and human point of view, since it means that society becomes capable of producing increasing quantities of material wealth with ever less necessary labor. However, if productivity grows too rapidly, capitalism comes to require an increasingly smaller quantity of workers to reproduce the material basis of society, thereby weakening the very foundation of capital valorization.
The available alternatives for increasing the limit are to reduce , that is, to reduce the quantity of embodied labor allocated to workers, thereby intensifying exploitation. Reducing faces a limit, since even for , in our case we obtain an upper limit of only . And if we look at accumulation , increasing the limit requires reducing accumulated wealth itself. But here we encounter the contradiction: in order to ensure that material wealth does not decline persistently, it becomes necessary to reduce accumulated wealth.
Testing this numerically, for the constants specified above, when , material wealth measured in embodied labor grew by , whereas for it declined by .
# @title
LB = 5 #Trabalho contido na riqueza inicial
LB0=LB
a=5 #Multiplo do trabalho adicionado
L=LB/a #Trabalho adicional no ano
w=0.5 #wageshare
d=0.05 #Taxa de depreciação material
g=0.050 #Taxa de decréscimo do trabalho contido
N=10 #anos
for i in range(N):
LB1=LB*(1-d) #O que resta depois do decréscimo material
LB2=LB1*(1-g) #A diminuição no trabalho contido
LB3=LB2+(1-w)*L
LB=LB3
print(f"\nApós {(N):d} anos, a riqueza material cresceu {(100*(LB/LB0-1)):.2f}%")
Após 10 anos, a riqueza material cresceu 1.64%
Productivity¶
The standard way of measuring productivity is as the ratio between monetary value added (that is, the sale price minus the cost of the inputs used in production) and the quantity of labor directly employed in the production of the basket .
Considering the basket of the economy’s net product , we may write:
where represents the monetary value added and represents the labor directly employed in the production of this basket.
To track changes in productivity over time, a reference basket is used, whose prices are rescaled in real terms (that is, adjusted for inflation), such that:
Defining as the rate of decline of labor content, we have:
Then:
That is, by disregarding inflation through the use of real prices, we treat the monetary value added of the net product basket as approximately constant over time. In this case, increases in productivity imply reductions in the quantity of labor required to produce that basket.
In other words, by the very traditional definition of productivity as the ratio between monetary value added and the labor directly expended in production, if monetary value added remains approximately constant, then an increase in productivity necessarily corresponds to a reduction in the labor embodied in the production of those goods.
The most relevant aspect is not merely the algebraic identity between productivity and labor content, but rather the fact that the rate of reduction of labor content corresponds approximately to the relative variation in productivity.
This discussion regarding the decline in labor content also helps to explain how an increase in exploitation may occur even without a reduction in nominal wages. We may imagine a scenario without inflation in which a worker receives a minimum wage sufficient to purchase a basic basket of goods necessary for survival.
With technical progress, the quantity of labor required to produce this basket tends to decline. If the nominal wage remains constant and the monetary prices of the basket do not fall in the short run, then the worker will continue purchasing the same physical basket, yet this basket will represent a smaller quantity of socially necessary labor.
One might object that, as previously discussed, reductions in labor content tend to produce reductions in prices. However, this does not necessarily occur immediately. In the short run, prices may remain relatively rigid or be offset by inflation and by changes in relative prices throughout the economy.
For example, other components of the cost of living may become relatively more expensive. Suppose a second basket containing twice as many labor hours. If technical progress reduces the labor content of the basic basket while its monetary price remains stable, then the relative difference between the labor contents of the two baskets increases. This may be reflected in an increase in their relative price.
Thus, even if certain industrial commodities significantly reduce their labor content, other components of the cost of living may become relatively more expensive, especially in sectors in which human labor remains central.
In this way, the nominal wage may remain unchanged while the worker comes to control a smaller share of the total social labor produced in the economy.
Rate of Accumulation¶
If the labor produced during the year is , and a fraction is reinvested in order to generate new capital, and we denote as the labor embodied in capital, then the rate of profit over the total capital stock, in terms of embodied labor, may be approximately written as:
That is, a ratio between all surplus labor appropriated by capitalists and the capital stock, where , since is the fraction appropriated by workers. Evidently, also represents the maximum fraction of added labor that could be reinvested by capitalists, such that:
In the following year, the capital stock then consists of part of the labor produced in the previous year that was converted into capital, together with what remains of the previous year’s stock after discounting both the material depreciation of capital and the reduction in the labor content of commodities caused by productivity growth .
And if we use to denote the growth of labor added annually, we have:
Then
where we defined
Now, taking the inverse :
Or equivalently:
The equilibrium solution is therefore obtained when :
That is, the equilibrium point is:
The distance of a term from equilibrium may then be defined by:
and, since :
It is then easy to see that for we have:
for :
and, in general:
Returning then to:
we obtain:
Rearranging, and recalling that :
Therefore, if , then for we have:
That is, the system is stable if:
And the equilibrium point is
Considering :
That is, in the stationary state, the greater the fraction of surplus reinvested in the accumulation of capital , the lower the average rate of profit tends to be.
Specific Price of a Sufficiently Large Basket¶
The book argues that, for sufficiently large and heterogeneous baskets, the average specific price tends approximately toward the same value. This implies that
that is, the ratio between the monetary prices of two large baskets tends to follow the ratio between their labor contents. Under this approximation, the average rate of profit calculated in monetary terms is approximately equal to the rate of profit calculated in terms of embodied labor.
For this condition to hold, it is necessary to assume that the specific prices of individual commodities,
are drawn from the same relatively stable statistical distribution. Thus, by the Law of Large Numbers, the average specific prices of large heterogeneous baskets tend toward the same expected value.
That is:
where the weights
are determined by the labor content of the basket. Then:
By the Law of Large Numbers, if the basket contains a sufficiently large and heterogeneous quantity of commodities, the average specific price of the basket is expected to converge toward the theoretical mean of the distribution. To test this, a code was written constructing two baskets with 106 commodities drawn from a normal distribution with mean 100 and standard deviation 10. The ratio between the specific prices of both baskets was found to be approximately 1.00.
# @title
import numpy as np
N=1000000
c1=0;c2=0;T1=0;T2=0
for x in range(N):
P1=np.random.normal(loc=100, scale=10)
P2=np.random.normal(loc=100, scale=10)
L1=np.random.normal(loc=100, scale=10)
L2=np.random.normal(loc=100, scale=10)
c1=c1+P1*L1
T1=T1+L1
c2=c2+P2*L2
T2=T2+L2
c1=c1/T1
c2=c2/T2
print(f"\nAmos os preços específicos convergem com uma razão de {(c1/c2):.2f}")
Amos os preços específicos convergem com uma razão de 1.00
Accumulation Limit¶
It is often said that capitalism is an economic engine of development because it requires the continuous development of the productive forces. We may verify this in the fact that the material accumulation that a capitalist is capable of possessing is limited by annual production.
That is, if we denote accumulated material wealth by , then we expect something of the form:
Let us now calculate this constant. Considering that a fraction of the labor produced in one year, , is transformed into wealth, together with the same factors of material depreciation and reduction in labor content :
Then:
We obtain the same result as before, except now:
and
In addition:
Therefore:
That is:
The transformation problem¶
This chapter is inspired by Chapter 6 of the book Laws of Chaos: Probabilistic Approach to Political Economy . The chapter is entitled The Dissolution of the Transformation Problem and deals, as its title suggests, with the transformation problem. Here, the transformation problem should be understood as “showing how an equal average rate of profit can be achieved not only without violating the law of value, but through it.”
The term “transformation problem” can also be reinterpreted in a broader sense, namely, as the problem of elucidating the systematic connections between value categories (or labor-content categories), on the one hand, and price categories, on the other.
Let us begin by understanding Marx’s theory of prices. We start from the idea of ideal prices, that is, prices that would prevail in a hypothetical state of equilibrium. Under this conception of prices, market prices are said to fluctuate around these ideal prices and to tend to converge toward them.
We begin with the model in which the labor content of a commodity is related to its ideal price through the following equation:
Where is a universal constant for all commodities. We now need to make a few distinctions.
Labor power is the worker’s capacity to perform labor. Thus, the amount of labor power that an employer purchases corresponds to the length of time for which this capacity to work is rented, for example, 8 hours per day. It is important to make it clear that labor power is itself a commodity. However, it has a particularity when discussing its price and value.
Workers must consume a minimum quantity of commodities in order to reproduce their labor power, that is, to remain capable of working and surviving. These commodities include food, housing, transportation, clothing, and so on, although the exact composition of this bundle depends on historical and social conditions.
The value (labor content) of labor power corresponds to the socially necessary labor embodied in this bundle of commodities required for the worker’s reproduction. Equivalently, the price of labor power corresponds to the price of this bundle of commodities. Naturally, the numerical values depend on the time unit under consideration, such as weekly, monthly, or annual consumption.
Let us assume, for example, that is the ideal price of labor power—for instance, the weekly wage—equal to the price of a standard bundle of commodities that a worker (and their family) must consume each week under given social conditions in order to remain able to work for another week. Likewise, is the labor content of the same bundle, that is, the amount of labor required to produce it. If we work with a weekly time unit, then we must have ; that is, the bundle of commodities consumed by a worker during one week must require less than one week of labor to produce. We therefore have
Let us now consider a firm that hires workers for one week. Since we are using one week as the unit of time, the firm has hired units of labor power. Naturally, if the price is per unit of labor power, then the weekly labor cost is .
Furthermore, during the week, the workers produce a bundle of commodities , so that the firm’s revenue is .
During the production process, the firm also consumes a bundle of commodities , representing an additional cost of . Therefore, the weekly profit is given by
We can calculate the rate of profit by taking the ratio of profit to the firm’s total capital . Thus, we obtain
Naturally, we are assuming that all transactions take place at their ideal prices. Since is a universal constant, independent of the commodity under consideration, we can rewrite this expression in terms of labor content:
Now let us focus on the difference
We should keep in mind that this expression must yield a quantity of labor content, which in our case is measured in weeks. Since the entire production process takes place within a single week, the difference in labor content between the commodities consumed during production and the final output can only originate from the labor performed by the workers themselves. Because the production process lasts one week and employs workers throughout this period, the total labor added to production is units of labor content. Therefore, we have , which is precisely the amount of labor embodied in the final product. Hence,
Once again, we see the requirement that , since otherwise there would be no surplus available to be appropriated by the capitalists. Considering the economy as a whole, the average rate of profit is
where is the total number of workers in the economy and is the aggregate capital.
Looking at the economy as a whole, what differs across firms is the number of workers, , and the amount of capital, . More specifically, the rate of profit is inversely proportional to the amount of capital per worker, so that
Clearly, the profit rates can only be uniform across firms if is itself uniform, which does not appear to be a realistic assumption. Let us now rewrite
simply to emphasize that denotes the bundle of commodities consumed by workers in order to reproduce their labor power. We may then write
Since is the total number of workers, it is also the total amount of labor (measured in weeks of labor) performed by these workers. There is an important point to emphasize here: the quantity of living labor added does not necessarily correspond to the number of physical hours worked within the firm. Because we are using the week as the fundamental unit of time, one unit of labor power corresponds to renting a worker’s capacity to work for an entire week. Thus, if a worker is hired on a weekly basis to produce a chair and delivers the finished product at the end of the week, we count one weekly unit of labor as having been embodied in the product, regardless of how the actual working hours were distributed throughout the week. In this framework, it is irrelevant whether the worker labored one hour or eight hours per day; what matters is that one week’s worth of labor power was mobilized in the production process. Therefore, if a firm hires workers on a weekly basis, the production process incorporates weekly units of living labor.
We are also working under the abstraction that workers are homogeneous with respect to their average productive capacity. Otherwise, a firm employing workers could incorporate either more or less than units of labor content, since its workers might be either more or less productive than the social average. We can therefore recover a version analogous to our first expression for , since
which gives
However, we now abandon the notion of ideal prices and the deterministic formulation. Instead of assuming we adopt the specific price of a commodity bundle introduced earlier:
Now consider again that the commodity bundles each contain an extremely large number of commodities. Recall that the specific price of commodity is modeled as a random variable drawn from a probability distribution common to all commodities. Furthermore, the average specific price of a bundle is given by
where denotes the labor content of commodity . Since the are independent and identically distributed random variables, and since the bundles under consideration contain a very large number of commodities, it follows from the law of large numbers that
for any sufficiently large bundles and .
Therefore,
However, no longer denotes the ideal price. Instead, it represents the actual realized price. Now, if the profit rate of firm is
where is the firm’s realized profit and is its capital, then the capital-weighted average profit rate across the entire economy is therefore
Since is precisely the ratio between the total profit and the total capital of the entire economy, it follows that
In other words, we have abandoned the hypothesis of deterministic ideal prices, according to which every commodity satisfies exactly
and replaced it with a probabilistic formulation in which the specific prices of commodities are treated as random variables. Nevertheless, for sufficiently large aggregates of commodities, the law of large numbers implies that individual price fluctuations offset one another, causing the ratio between price and labor content for these aggregates to converge toward a common average value, .
Rate of Surplus Value and the Tendency of the Rate of Profit to Fall¶
Returning to our initial formulation in terms of prices, let us define the ideal wage unit as . Let denote the labor content of this unit. Then, for labor power, we have
For any other commodity bundle, it follows that
If we identify the rate of surplus value as
then the rate of surplus value corresponds to the ratio between the labor content of the surplus appropriated by the capitalists and the labor content of the bundle of commodities required to reproduce labor power.
Therefore,
Substituting this result into the previous expression, we obtain
Connecting this with the previous discussion, in which we moved from the deterministic formulation to the probabilistic one, , we may expect that the average specific price of a sufficiently large aggregate of commodities converges to . This is precisely what we shall now demonstrate.
To do so, recall that denotes the aggregate of commodities consumed by the working population during one week, and that is its total price. We shall ignore savings, taxes, and similar factors, assuming that workers spend their entire income. Under this assumption, the aggregate weekly wage paid to all workers is simply .
Since we have chosen the average weekly wage as the monetary unit, the aggregate wage paid to workers over one week is numerically equal to . Hence,
Therefore, for any sufficiently large aggregate of commodities , we expect that
In this formulation, the labor theory of value is no longer interpreted as a deterministic theory of individual prices, but rather as a statistical regularity that holds only at the aggregate level.
Furthermore, let and . Since and , we obtain
Since it follows that if the amount of capital per worker, tends to increase, that is, then, regardless of any increase in the rate of surplus value , the general rate of profit tends to decline:
According to the authors of this book, however, this tendency is not supported by the available empirical evidence. Other interpretations argue that it is not the general rate of profit that tends to decline, but rather the incremental rate of profit (that is, the rate of return on new investments).
Furthermore, we may relate the quantity to the well-known organic composition of capital, Since we have and therefore
which implies
Thus, we may rewrite the previous expression directly in terms of the organic composition of capital:
Once again, an increase in the organic composition of capital, while holding constant, leads to a decline in the general rate of profit.
Conclusion¶
The main weakness of the first model does not appear to lie in its connection between price and value, but rather in its strictly deterministic character. Once reinterpreted probabilistically—allowing individual prices to fluctuate randomly while regularities emerge only at the aggregate level—the model becomes compatible with the empirically observed dispersion of both prices and profit rates.
The model presented in Volume III, on the other hand, retains its deterministic character and furthermore begins by assuming the uniformity of profit rates. This assumption is introduced precisely because the original deterministic model of Volume I cannot generate uniform profit rates across sectors with different capital compositions. However, in attempting to impose such uniformity, the model introduces new conceptual and mathematical difficulties.
Whereas the model in Volume I of Capital is primarily concerned with the origin of profit—which is why concepts such as value and surplus value occupy a central role—the model in Volume III shifts its attention to the distribution of profit. Although these two questions can be treated separately, as demonstrated by several theorists, there must ultimately be some connection between them. It is precisely in formulating this connection that many of the controversies associated with the so-called transformation problem arise.
It is important to bear in mind that non-Marxist approaches, being concerned only with the distribution of profit, may regard the labor theory of value as unnecessary. The Marxist approach, by contrast, seeks not only to explain the distribution of profit but also its origin. It therefore requires a framework that preserves some connection between profit, value, and surplus value. Consequently, rather than abandoning the original model in favor of a new deterministic system based on uniform profit rates, it seems more natural to reinterpret the original model directly in probabilistic terms. Under this approach, individual prices and profit rates are free to fluctuate, while the regularities predicted by the labor theory of value emerge only at the statistical and aggregate levels.
It may also be said that the authors reject the hypothesis that profit rates become equalized across individual capitals. Instead, they replace it with the concept of a general rate of profit defined as the capital-weighted average of firms’ profit rates, where the weights correspond to the magnitude of each firm’s capital. Rather than assuming a uniform profit rate across different sectors, this approach assumes the existence of a relatively stable distribution of profit rates across firms.
Automatic translation into English from my Portuguese manuscripts.