diff --git a/00028_GDP_Growth_Rate/en_article_proofreading.md b/00028_GDP_Growth_Rate/en_article_proofreading.md
index fdc2efd..4667c17 100644
--- a/00028_GDP_Growth_Rate/en_article_proofreading.md
+++ b/00028_GDP_Growth_Rate/en_article_proofreading.md
@@ -6,205 +6,212 @@ keywords:
 is_finished: False
 ---
 
-# GDP growth rate
-
-Gross Domestic Product (GDP) is a monetary expression of the total value of goods 
-and services newly created in a given period in a given territory. 
-GDP is used in macroeconomics as an indicator for determining the performance of national economies. 
-The figure shows the gross domestic product per capita of each country in the European Union in 2023.
-
-![GDP per capita of individual EU countries in 2023](00028_1.png)
-
-Recall that for $n$ values of $x_1,\,x_2,\,\ldots\, x_n\in\mathbb{R}$ the **arithmetic mean** is
-$$\overline{x}_A=\dfrac{x_1+x_2+\cdots+x_n}{n}$$
-and the **geometric mean**  is
-$$\overline{x}_G=\sqrt[n]{x_1\cdot x_2\cdot\,\cdots\,\cdot x_n}.$$ 
-
-It holds that $\overline{x}_A\geq\overline{x}_G$, equality occurs if $x_1=x_2=\cdots=x_n$.
-
-In this assignment, we will consider data that show the evolution of GDP per capita 
-in the EU between the years 2003 and 2022. 
-For these values, we will be interested in the **annual growth rate** $$y_i=x_i-x_{i-1},$$ 
-where $x_i,\, x_{i-1}$ are the GDP values in two consecutive years.
-
-The **relative annual increase** is the annual increase relative to the original value. 
-It is calculated as the fraction 
-$$\frac{x_i-x_{i-1}}{x_{i-1}}.$$
-
-To characterize data with a certain trend, we often need to calculate the growth rate, 
-for which it is necessary to use the geometric mean.
-
-The **growth coefficient** is the ratio of two consecutive values $x_{i-1},\, x_i$, i.e. 
-$$z_i=\frac{x_i}{x_{i-1}}.$$
-
-We define the **average growth coefficient** $\overline{z}_G$ 
-as the geometric mean of the individual growth coefficients for a given period 
-$$\overline{z}_G=\sqrt[n]{z_1\cdot z_2\cdot\,\cdots\,\cdot z_n}.$$
-This relationship can be modified by truncating the fractions below the square root
-$$\overline{z}_G=\sqrt[n]{\frac{x_2}{x_1}\cdot \frac{x_3}{x_2}\cdot\,\cdots\,\cdot \frac{x_n}{x_{n-1}}}=\sqrt[n]{\frac{x_n}{x_1}}.$$
-From here we can see that when calculating the average growth factor, 
-we only need to work with the first and last values of our sequence. 
-
-We then call the value $\overline{z}_G-1$ the **average growth rate**.
-
-The table shows the GDP per capita values in European
-Union between 2003 and 2022 (from 2020 for 27 countries).
-
-| Year  | GDP [Euro/capita]| 
-| - | ---: | 
-| **2003**  | $20\,330$  | 
-| **2004**  | $21\,180$  | 
-| **2005**  | $22\,010$  | 
-| **2006**  | $23\,200$  | 
-| **2007**  | $24\,550$  | 
-| **2008**  | $25\,260$  | 
-| **2009**  | $24\,050$  | 
-| **2010**  | $24\,900$  | 
-| **2011**  | $25\,660$  | 
-| **2012**  | $25\,770$  | 
-| **2013**  | $26\,010$  | 
-| **2014**  | $26\,580$  | 
-| **2015**  | $27\,500$  | 
-| **2016**  | $28\,190$  | 
-| **2017**  | $29\,320$  | 
-| **2018**  | $30\,290$  | 
-| **2019**  | $31\,310$  | 
-| **2020**  | $30\,050$  | 
-| **2021**  | $32\,520$  | 
-| **2022**  | $35\,280$  | 
-
-*Note* Data from the table can be copied from the Eurostat dataset
-https://ec.europa.eu/eurostat/databrowser/view/NAMA_10_PC__custom_7117372/default/table?lang=en 
-and processed in a spreadsheet.
-
-> **Exercise 1.** Calculate the annual GDP per capita growth rate.
-
-*Solution.* The annual growth rate of GDP per capita is the difference between two 
-consecutive values of $x_i$. The annual growth rate for 2003 is then $$x_2-x_1=21\,280-20\,330=850.$$ 
-The annual growth rates in the following years are shown in the table below.
-
-| Year  | GDP [Euro/capita]| Annual growth [Euro/capita] | 
-| - | ---: | ---: | 
-| **2003**  | $20\,330$  |  | 
-| **2004**  | $21\,180$  | $850$ | 
-| **2005**  | $22\,010$  | $830$ | 
-| **2006**  | $23\,200$  | $1\,190$ | 
-| **2007**  | $24\,550$  | $1\,350$ | 
-| **2008**  | $25\,260$  | $710$ |  
-| **2009**  | $24\,050$  | $-1\,210$ | 
-| **2010**  | $24\,900$  | $850$ | 
-| **2011**  | $25\,660$  | $760$ | 
-| **2012**  | $25\,770$  | $110$ | 
-| **2013**  | $26\,010$  | $240$ | 
-| **2014**  | $26\,580$  | $570$ | 
-| **2015**  | $27\,500$  | $920$ |
-| **2016**  | $28\,190$  | $690$ | 
-| **2017**  | $29\,320$  | $1\,130$ | 
-| **2018**  | $30\,290$  | $970$ | 
-| **2019**  | $31\,310$  | $1\,020$ |  
-| **2020**  | $30\,050$  | $-1\,260$ | 
-| **2021**  | $32\,520$  | $2\,470$ |  
-| **2022**  | $35\,280$  | $2\,760$ |  
-
-
-When using a spreadsheet, you can use the command for the difference 
-of values in two cells and copy it to the whole column.
-
-> **Exercise 2.** Calculate the relative annual GDP per capita growth
-> (annual growth relative to the initial value).
-
-*Solution.* To calculate relative GDP growth, we divide the value of annual GDP growth by the original value.
-The relative growth rate for 2003 will then be
-$$\frac{x_2-x_1}{x_1}=\frac{21\,180-20\,330}{20\,330}=\frac{850}{20\,330}\;\dot{=}\;0{,}0418.$$
-That's $4{,}18\,\%$ in percent. Relative annual growth in the other years is then calculated in the same way. 
-
-| Year  | GDP [Euro/capita]| Annual growth [Euro/capita] | Relative annual growth [%] |
-| - | ---: | ---: | ---: |
-| **2003**  | $20\,330$  |  | 
-| **2004**  | $21\,180$  | $850$     | $4{,}18$ |
-| **2005**  | $22\,010$  | $830$     | $3{,}92$ |
-| **2006**  | $23\,200$  | $1\,190$  | $5{,}41$ |
-| **2007**  | $24\,550$  | $1\,350$  | $5{,}82$ |
-| **2008**  | $25\,260$  | $710$     | $2{,}89$ |
-| **2009**  | $24\,050$  | $-1\,210$ | $-4{,}79$ |
-| **2010**  | $24\,900$  | $850$     | $3{,}53$ |
-| **2011**  | $25\,660$  | $760$     | $3{,}05$ |
-| **2012**  | $25\,770$  | $110$     | $0{,}43$ |
-| **2013**  | $26\,010$  | $240$     | $0{,}93$ |
-| **2014**  | $26\,580$  | $510$     | $2{,}19$ |
-| **2015**  | $27\,500$  | $920$     | $3{,}46$ |
-| **2016**  | $28\,190$  | $690$     | $2{,}51$ |
-| **2017**  | $29\,320$  | $1\,130$  | $4{,}01$ |
-| **2018**  | $30\,290$  | $970$     | $3{,}31$ |
-| **2019**  | $31\,310$  | $1\,020$  | $3{,}37$ |
-| **2020**  | $30\,050$  | $-1\,260$ | $-4{,}02$ |
-| **2021**  | $32\,520$  | $2\,470$  | $8{,}22$ |
-| **2022**  | $35\,280$  | $2\,760$  | $8{,}49$ |
-
-> **Exercise 3.** Calculate the average relative annual increase in GDP per capita.
-
-*Solution.* The average relative annual GDP growth rate is given by the 
-arithmetic mean of relative GDP growth rates and is equal to $2{,}99\,\%$.
-
-This result is obtained in a spreadsheet using the AVERAGE or AVERAGEA command.
-
-> **Exercise 4.** Calculate the annual GDP per capita growth rate.
-
-*Solutin.* The annual GDP growth rate is obtained by adding the relative growth rate 
-to $100\,\%$ or by using the relation $z_i=\frac{x_i}{x_{i-1}}$. Thus, for 2003, we have 
-$$z_2=\frac{x_2}{x_1}=\frac{21\,180}{20\,330}\;\dot{=}\;1{,}0418$$
-in percentages, i.e. $104{,}18\,\%$. In subsequent years, 
-we calculate the annual growth rates in the same way.
-
-| Year  | GDP [Euro/capita]| Annual growth [Euro/capita] | Relative annual growth [%] | Annual growth coefficient[%] |
-| - | ---: | ---: | ---: | ---: |
-| **2003**  | $20\,330$  |  | 
-| **2004**  | $21\,180$  | $850$     | $4{,}18$  | $104{,}18$ |
-| **2005**  | $22\,010$  | $830$     | $3{,}92$  | $103{,}92$ |
-| **2006**  | $23\,200$  | $1\,190$  | $5{,}41$  | $105{,}41$ |
-| **2007**  | $24\,550$  | $1\,350$  | $5{,}82$  | $105{,}82$ |
-| **2008**  | $25\,260$  | $710$     | $2{,}89$  | $102{,}89$ |
-| **2009**  | $24\,050$  | $-1\,210$ | $-4{,}79$ | $95{,}21$  |
-| **2010**  | $24\,900$  | $850$     | $3{,}53$  | $103{,}53$ |
-| **2011**  | $25\,660$  | $760$     | $3{,}05$  | $103{,}05$ |
-| **2012**  | $25\,770$  | $110$     | $0{,}43$  | $100{,}43$ |
-| **2013**  | $26\,010$  | $240$     | $0{,}93$  | $100{,}93$ |
-| **2014**  | $26\,580$  | $510$     | $2{,}19$  | $102{,}19$ |
-| **2015**  | $27\,500$  | $920$     | $3{,}46$  | $103{,}46$ |
-| **2016**  | $28\,190$  | $690$     | $2{,}51$  | $102{,}51$ |
-| **2017**  | $29\,320$  | $1\,130$  | $4{,}01$  | $104{,}01$ |
-| **2018**  | $30\,290$  | $970$     | $3{,}31$  | $103{,}31$ |
-| **2019**  | $31\,310$  | $1\,020$  | $3{,}37$  | $103{,}37$ |
-| **2020**  | $30\,050$  | $-1\,260$ | $-4{,}02$ | $95{,}98$  |
-| **2021**  | $32\,520$  | $2\,470$  | $8{,}22$  | $108{,}22$ |
-| **2022**  | $35\,280$  | $2\,760$  | $8{,}49$  | $108{,}49$ |
-
-
-
-> **Exercise 5.** Calculate the average GDP per capita growth rate.
-
-*Solution.* To obtain the average GDP growth rate, it is sufficient to use the initial and final values:  
-$$\overline{z}_G=\sqrt[19]{\frac{35\,280}{20\,330}}\;\dot{=}\;1{,}0294,$$
-in percentages, $102{,}94\,\%$. The average GDP growth rate per capita is therefore $2{,}94\;\%$. 
-In a spreadsheet, the GEOMEAN geometric mean command can be used.
-
-> **Exercise 6.** Estimate the GDP per capita in 2022 based on the 2003 value using
-> a) the average relative annual growth, b) the average growth rate.
-
-*Solution.* Note that the values of the average relative growth rate and the average growth rate are different. 
-We will use the exact value obtained in the spreadsheet for the calculation.
-
-a) The average relative growth rate is about $2{,}99\,\%$, 
-so to get the following value we need to multiply the original value by $1{,}0299$. 
-To get an estimate of the GDP per capita value, we need to calculate 
-$20\,330\cdot 1{,}0299^{19}\;\dot{=}\;35\,615$ Euros per capita. 
-
-b) Using the geometric mean of GDP growth coefficient per capita, 
-we obtain an exact value of $20\,330\cdot{,}0294^{19}\;\dot{=}\;35\,280 Euros per capita. 
+# Description of GDP Trends
 
-## Literature
+Gross Domestic Product (GDP) represents the monetary value of all goods and services newly produced within a specific area during a given period. In macroeconomics, GDP is used as an indicator to assess the performance of national economies. For example, it can be used to compare the economic performance of European Union member states in 2023 (see Figure 1).
+
+
+![Fig.  1: Comparison of GDP among EU Member States in 2023 (The orange line indicates the EU’s average GDP per person, equivalent to €29,280.)](GDP_1.png)
+
+
+Another way to use GDP is to track a country's performance over time. For example, we can examine the GDP per person for the European Union from 2020 to 2023 when the EU had 27 member states (see Figure 2). The time series illustrating this trend is shown in Figure 2. *(Data source: [2])*
+
+![Fig. 2: GDP Trends in EU per Person from 2020 to 2023](GDP_2.png)
+
+A time series showing GDP trends is referred to as an interval-based time series. The data in such a series depend on the length of the analyzed interval (in this case, on the length of the given year).
+
+Let the values $y_1,\,y_2,\,\ldots\,y_n$ of the time series correspond to the time points  $t_1,\,t_2,\,\ldots\,t_n$. 
+
+The primary characteristic used to describe this time series is its mean.
+
+The **Mean of an Interval-Based Time Series ($\bar{y}$)**
+is calculated as a simple arithmetic mean:
+
+$$
+\bar{y} = \frac{y_1 + y_2 + \dots + y_n}{n}. \tag{1}
+$$  
+
+Besides the mean, we are often interested in the basic measures of time series dynamics, which help characterize the fundamental features of their behavior.
+
+The **Absolute Change ($\Delta y_t$)**
+is the simplest measure of change in a time series, which tells us "by how much" the series changed between time points:
+
+$$
+\Delta y_t = y_t - y_{t-1}, \quad t = 2,3, \dots, n.\tag{2}
+$$  
+
+The **Average Absolute Change ($\bar{\Delta}$)**
+indicates the average change between two measurements during the observed period.
+
+The sum of absolute changes represents the total change in the time series over observed period (“by how much” the time series changed from $t_1$ to $t_n$):
+$$
+\Delta y_2 + \Delta y_3 + \dots + \Delta y_n = (y_2 - y_1) + (y_3 - y_2) + \dots + (y_n - y_{n-1}) = y_n - y_1.
+$$
+
+Therefore, the average absolute change is calculated as the arithmetic mean of absolute changes: 
+
+$$
+\bar{\Delta} = \frac{\Delta y_2 + \Delta y_3 + \dots + \Delta y_n}{n-1} = \frac{y_n - y_1}{n-1}.\tag{3]}
+$$
+
+Notice, this calculation only requires the initial value $y_1$, the final value $y_n$, and the number
+of values $n$.
+
+ **Growth Coefficients (Growth Rates, $k_t$)** indicate "how many times" the series changed between time points:
+
+$$
+k_t = \frac{y_t}{y_{t-1}}, \quad t = 2,3, \dots, n.\tag{4}
+$$  
+
+The **Average Growth Coefficient ($\bar{k}$)**
+indicates the average factor by which the series changed between measurements during the observed period.
+
+In this case, the overall growth coefficient (“how many times” the time series changed between times $t_1$ a $t_n$) is calculated not as the sum but as the product of the individual growth coefficients:
+
+$$
+k_2 \cdot k_3 \cdot \dots \cdot k_n = \frac{y_2}{y_1} \cdot \frac{y_3}{y_2} \cdot \dots \cdot \frac{y_n}{y_{n-1}} = \frac{y_n}{y_1},
+$$
+
+Therefore, the average growth coefficient is determined as the geometric mean of the individual growth coefficients:
+
+$$
+\bar{k} =\sqrt[n-1]{k_2 \cdot k_3 \cdot \dots \cdot k_n} =\sqrt[n-1]{\frac{y_n}{y_1}}.\tag{5}
+$$  
+
+As with the average absolute change, only the initial value $y_1$, final value $y_n$, and the number of values $n$  are needed for this calculation.
+
+The **Relative Change ($\delta_t$)**:
+If we want to know 'by what percentage' the time series changed between individual time points, we use relative changes, which can easily be determined using growth coefficients:
+
+$$
+\delta_t = \frac{\Delta y_t}{y_{t-1}} \cdot 100 = \frac{y_t - y_{t-1}}{y_{t-1}} \cdot 100 = \left(\frac{y_t}{y_{t-1}} - 1\right) \cdot 100 = (k_t - 1) \cdot 100, \quad t = 2,3, \dots, n \tag{6}
+$$
+
+For example, if the price of a product increases by a factor of $1.5$, the percentage increase is $50\% (=(1.5-1)\cdot100)$.
+
+The **Average Relative Change ($\bar{\delta}$)**
+
+It indicates "by what percentage" the time series changed on average during the period between two measurements within the observed time period can then be easily calculated using the average growth coefficient:
+
+$$
+\bar{\delta} = (\bar{k} - 1) \times 100.\tag{7}
+$$  
+
+*Note* The sum (or product) of individual relative changes is not equal to the total relative change ("by what percentage" the time series changed between times $t_1$ and $t_n$). Therefore, the arithmetic or geometric mean of individual relative changes cannot be used to calculate the average relative change.
+
+Now, let us attempt a basic description of the time series representing GDP trends (in euros per person), as shown in Figure 2.
+
+
+> **Exercise 1.** Determine the average annual GDP (in euros per person) of the European Union for the years 2020 to 2023.
 
-* Eurostat. *HDP per person* [online]. Dostupné z https://ec.europa.eu/eurostat/cache/visualisations/country-bubbles [cit. 9.\,8.\,2023].
-* Eurostat. *HDP per person - dataset* [online]. Dostupné z https://ec.europa.eu/eurostat/databrowser/view/NAMA_10_PC__custom_7117372/default/table?lang=en [cit. 9.\,8.\,2023].
-* Český statistický úřad. *Hrubý domácí produkt - metodika.* Dostupné z https://www.czso.cz/csu/czso/hruby_domaci_produkt_-hdp- [cit. 9.\,8.\,2023]
+*Solution.* As stated in equation (1), the average annual GDP is calculated as the simple arithmetic mean of the analyzed time series:
+
+$$
+\bar{y} = \frac{y_1 + y_2 + y_3 + y_4}{4} = \frac{26\,790 + 28\,490 + 29\,300 + 29\,280}{4} \approx 28\,465.
+$$
+
+From 2020 to 2023, the average annual GDP of the European Union was approximately $€28\,465$ per person.
+
+
+> **Exercise 2.** Determine the annual GDP changes (in euros per person) of the European Union from 2020 to 2023 and the corresponding average annual GDP change for this period.
+
+*Solution.*  Annual GDP changes indicate "by how much" the GDP changed year over year. These   changes are determined as absolute changes according to equation (2), as shown in 
+Table 1.
+
+
+| Year  | GDP (Euro/person) | Annual GDP Change (Euro/person) |
+|-------|------------------|---------------------------------|
+| 2020  | 26 790          | ---                             |
+| 2021  | 28 490          | 28 490 - 26 790 = 1 700                           |
+| 2022  | 29 300          | 29 300 - 28 490 = 810                             |
+| 2023  | 29 280          | 28 280 - 29 300 = -20                             |
+| **Average** | **28 465** | **830** |
+
+
+-	 In 2021, the annual GDP per person in the European Union increased by €1 700.
+-	 In 2022, the annual GDP increase was €810 per person.
+-	 In 2023, there was a slight decrease in annual GDP of €20 per person.
+
+Now, we can determine the average annual GDP change using equation (3), either by calculating the arithmetic mean of the annual changes or by using only the initial and final values of the analyzed time series:
+
+$$
+\bar{\Delta} = \frac{\Delta y_2 + \Delta y_3 + \Delta y_4}{4-1} = \frac{1,700 + 810 + (-20)}{3} = 830
+$$
+or  
+$$
+\bar{\Delta} = \frac{y_4 - y_1}{4-1} = \frac{29,280 - 26,790}{3} = 830.
+$$
+
+From 2020 to 2023, the GDP in the European Union increased by an average of €830 per person per year.
+
+The average change can also be interpreted as follows: If the GDP had increased by exactly €830 per person every year from the initial value in 2020, the GDP in 2023 would have reached the observed final value.
+
+Suppose we know that the average annual GDP increase from 2020 to 2023 was €830 per person, and in 2020, the GDP per person was €26,790. Since there were three annual changes in this period, we can conclude that in 2023, the GDP per person was:
+$$
+26\, 790+3\cdot830=29\, 280 \,\text{(Euro per person}).
+$$
+
+
+> **Exercise 3.** Determine the annual GDP growth rates of the European Union from 2020 to 2023 and the corresponding average GDP growth rate for this period.
+
+*Solution.* Annual GDP growth rates indicate "by how much" the GDP changed year over year. These rates are calculated as growth coefficients according to equation (4), as shown in Table 2.
+
+
+| Year      | GDP (Euro/person)    | Annual GDP Change (Euro/person) | Growth Rate (-)                                  |
+|-----------|----------------------|---------------------------------|--------------------------------------------------|
+| 2020      |  26 790           |  ---                        |  ---                                        |
+| 2021      |  28 490           |  1700                      | $\frac{28\,490}{26\,790} \approx 1.063$        |
+| 2022      |  29 300           |  810                        |  $\frac{29\,300}{28\,490} \approx 1.028$        |
+| 2023      |  29 280           |  -20                       | $\frac{29\,280}{29,300} \approx 0.999$        |
+| **Average** | **28 465** | **830**              |  ---                                         |
+
+-	 In 2021, the GDP in the European Union increased approximately 1.063 times, meaning a 6.3% annual growth.
+-	 In 2022, the GDP increased approximately 1.028 times, meaning a 2.8% annual growth.
+-	 In 2023, the GDP increased approximately 0.999 times, indicating a 0.1% annual decrease.
+
+Now, we can determine the average annual GDP growth rate using equation (5), either by computing the geometric mean of the individual annual growth rates or by using only the initial and final values of the analyzed time series:
+
+$$
+\bar{k} = \sqrt[n-1]{k_2 \cdot k_3 \cdot k_4} = \sqrt[3]{1.063 \cdot 1.028 \cdot 0.999} \approx 1.030
+$$
+
+or
+
+$$
+\bar{k} = \sqrt[n-1]{\frac{y_4}{y_1}} = \sqrt[3]{\frac{29,280}{26,790}} \approx 1.030
+$$
+
+From 2020 to 2023, the average annual GDP growth rate (in euros per person) in the European Union was 1.030, meaning that GDP grew on average by 3.0% per year.
+
+*Note.* If we compute the average growth rate as the geometric mean of the individual growth coefficients in Table 2, we introduce rounding errors. Therefore, it is recommended to use only the initial and final values of the analyzed time series for this calculation.
+
+The average growth rate can also be interpreted as follows: If the GDP had increased by exactly 1.030 times each year from the initial value in 2020, the GDP in 2023 would have reached the observed final value.
+
+Suppose we know that the average GDP growth rate from 2020 to 2023 was approximately 1.030, and in 2020, the GDP per person was €26,790. Since there were three annual changes in this period, we can conclude that in 2023, the GDP per person was approximately:
+$$
+26\, 790\cdot 1.030^3≈29\, 274 \, \text{(Euro per person)}.
+$$
+
+Since we used a rounded value for the average growth rate in our calculation, this introduces a small error. Given that we know the actual GDP in 2023 (€29,280 per person), we can determine the error introduced. In this case, we underestimated the actual GDP by €6 per person, or about 0.02%.
+
+> **Exercise 4.** Determine the annual relative GDP growth rates of the European Union from 2020 to 2023 and the corresponding average relative GDP growth rate for this period.
+
+*Solution.* This task has already been solved in the interpretation of the growth rates determined in Task 3. If we state that GDP increased 1.063 times in 2021, this is equivalent to saying that GDP grew by 6.3% in that year. 
+
+Equations (6) and (7) also express how the relative growth rate in percentage terms (or the average relative growth rate) is related to the growth rate (or the average growth rate).
+The results are summarized in Table 3.
+
+
+| Year      | GDP (Euro/person)    | Annual GDP Change (Euro/person) | Growth Rate (-)  | Relative Growth Rate (%) |
+|-----------|----------------------|---------------------------------|------------------|--------------------------|
+| 2020      | 26 790               | ---                             | ---              | ---                      |
+| 2021      | 28 490               | 1,700                           | 1.063            | 6.3                      |
+| 2022      | 29 300               | 810                             | 1.028            | 2.8                      |
+| 2023      | 29 280               | -20                             | 0.999            | -0.1                     |
+| **Average** | **28 465**           | **830**                         | **1.030**        | **3.0**                  |
+
+
+## Literature
+* *Real GDP per Capita* [online], Eurostat, 2024, Available at: https://ec.europa.eu/eurostat/databrowser/view/sdg_08_10/default/table. [Accessed: 2024-12-18].
+*  *Hrubý domácí produkt (HDP) - metodika,* [online], Český statistický úřad, 2024, Available at: https://www.czso.cz/csu/czso/hruby_domaci_produkt_-hdp- [Accessed: 2024-12-18]