<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>optimisation &#8211; Twenty Third Floor</title>
	<atom:link href="https://twentythirdfloor.co.za/category/optimisation/feed/" rel="self" type="application/rss+xml" />
	<link>https://twentythirdfloor.co.za</link>
	<description>Perspectives</description>
	<lastBuildDate>Wed, 06 Nov 2024 06:44:39 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>

<image>
	<url>https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/07/cropped-cropped-IMG_5265_2-2-32x32.jpg</url>
	<title>optimisation &#8211; Twenty Third Floor</title>
	<link>https://twentythirdfloor.co.za</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>The Mathematics and Game Theory Behind a Simple Number Game</title>
		<link>https://twentythirdfloor.co.za/2024/11/05/the-mathematics-and-game-theory-behind-a-simple-number-game/</link>
					<comments>https://twentythirdfloor.co.za/2024/11/05/the-mathematics-and-game-theory-behind-a-simple-number-game/#respond</comments>
		
		<dc:creator><![CDATA[David Kirk]]></dc:creator>
		<pubDate>Tue, 05 Nov 2024 07:41:13 +0000</pubDate>
				<category><![CDATA[competition]]></category>
		<category><![CDATA[complexity]]></category>
		<category><![CDATA[insight]]></category>
		<category><![CDATA[managing uncertainty]]></category>
		<category><![CDATA[optimisation]]></category>
		<guid isPermaLink="false">https://twentythirdfloor.co.za/?p=3089</guid>

					<description><![CDATA[My son recently came home from school excited about a number guessing game they&#8217;d played in class. The rules were simple: one child thinks of a number, and then the class takes turns asking questions about it. The first child to identify the exact number wins. Before reading on, pause and consider: What strategy would [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>My son recently came home from school excited about a number guessing game they&#8217;d played in class. The rules were simple: one child thinks of a number, and then the class takes turns asking questions about it. The first child to identify the exact number wins.</p>



<p><strong>Before reading on, pause and consider: What strategy would you use if you were playing this game? </strong></p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">The Optimal Group Strategy</h2>



<p>If we&#8217;re working as a team to find the number as quickly as possible, what&#8217;s our best approach? We need a systematic way to eliminate as many possibilities as we can with each question.</p>



<p>The optimal strategy is binary search &#8211; repeatedly halving the possible range by asking if the number is in one half or the other. For a number between 1 and n, this takes approximately logâ‚‚(n) questions. This is provably optimal from an information theory perspective &#8211; each yes/no question can at best halve our uncertainty. (This approach might be familiar if you&#8217;ve ever studied or used binary sort algorithms in computer science &#8211; the same principle of dividing the search space in half each time.)</p>



<p>Why does this work so well? Each question eliminates half the possible numbers, regardless of the answer. After k questions, we&#8217;ve reduced the possible range by a factor of 2^k. For example, with a starting range of 1-1000:</p>



<ul class="wp-block-list">
<li>Question 1: &gt;500? Reduces to 500 numbers</li>



<li>Question 2: &gt;750 or &gt;250? Reduces to 250 numbers</li>



<li>Question 3: &gt;875 or &gt;375? Reduces to 125 numbers<br />And so on…</li>
</ul>



<h2 class="wp-block-heading">The Competitive Dynamic</h2>



<p>But here&#8217;s where it gets interesting. The class isn&#8217;t actually trying to find the number as quickly as possible. Each child is competing to be the first to identify it. This transforms our optimization problem into a game theory challenge.</p>



<p>Consider child A&#8217;s decision when it&#8217;s their turn. They now face a trade-off:</p>



<ol class="wp-block-list">
<li>Ask a &#8220;narrowing&#8221; question that helps everyone by reducing the possible range</li>



<li>Make a direct guess at the number</li>
</ol>



<p>This becomes a competitive sequential search problem, touching on three related areas of study:</p>



<ol class="wp-block-list">
<li><strong>Competitive Search Problems</strong>: How do agents search through a solution space when competing to find something first? This appears in various contexts, from R&amp;D races between firms to parallel search algorithms in computer science.</li>



<li><strong>Information Cascade Theory</strong>: How do individuals make sequential decisions while observing others&#8217; choices? This typically studies how public information influences private decisions, leading to potential herding behavior.</li>



<li><strong>Strategic Information Revelation</strong>: How do agents decide what information to reveal when that information might help competitors? This is crucial in contexts like patent disclosures and auction bidding.</li>
</ol>



<p>The optimal individual strategy shifts as the game progresses:</p>



<ul class="wp-block-list">
<li>Early game: The search space is too large for guessing to be rational</li>



<li>Mid game: There&#8217;s a tipping point where direct guesses become more attractive</li>



<li>Late game: Once the range is sufficiently narrow, direct guesses become optimal</li>
</ul>



<p>For a rational player, the decision at each turn should be based on:</p>



<ol class="wp-block-list">
<li>Calculate probability of winning with a direct guess: p = (current range size)^-1</li>



<li>Calculate probability of winning later after a narrowing question, accounting for:</li>
</ol>



<ul class="wp-block-list">
<li>Reduced range size</li>



<li>Number of other players who might guess correctly before your next turn</li>



<li>Number of turns until you go again</li>
</ul>



<ol class="wp-block-list">
<li>Choose the action with higher expected value</li>
</ol>



<p>Crucially, this assumes all other players are also playing rationally &#8211; a strong assumption that might not hold in practice, especially with younger players!</p>



<h2 class="wp-block-heading">The Finite Guesses Twist</h2>



<p>Here&#8217;s another interesting variation: what if players are limited to a fixed number of questions? This creates a fascinating optimization problem even in non-competitive scenarios.</p>



<p>At some point, if you have k questions left and n possible numbers, random guessing becomes better than binary search. The intuition is that binary search might narrow down the range significantly but leave you unable to identify the specific number.</p>



<p>For example, with just two questions left and a range of five numbers, you might be better off making two direct guesses (probability of success = 2/5) rather than two binary search questions that could narrow it to 2 numbers but not identify which one.</p>



<p>The optimal strategy becomes a dynamic programming problem, where at each stage you need to calculate the expected probability of success for:</p>



<ol class="wp-block-list">
<li>Using a binary search question</li>



<li>Making a direct guess</li>
</ol>



<p>The mathematics behind this optimization is fascinating, but I&#8217;ll leave that for another post!</p>



<h2 class="wp-block-heading">An Interesting Parallel</h2>



<p>This competitive dynamic reminds me of the board game Cluedo (Clue in North America). While the optimal strategy is usually to gather information methodically, the game dynamic shifts dramatically when you suspect another player is close to solving the mystery. At this point, making an educated guess at the solution, even with incomplete information, might be your best play despite the penalty for guessing incorrectly.</p>



<p>This perfectly mirrors our number game &#8211; when you suspect other players are close to identifying the number, the rational strategy might be to take a calculated risk with a direct guess, even if you&#8217;d normally prefer to gather more information.</p>



<h2 class="wp-block-heading">Final Thoughts</h2>



<p>What started as a simple classroom game reveals layers of mathematical and game theoretical complexity. It demonstrates how individual incentives can lead to strategies that are suboptimal for the group &#8211; a common theme in game theory.</p>



<p>Have you encountered similar games or puzzles that seem simple at first but reveal hidden complexity? I&#8217;d love to hear about them in the comments.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://twentythirdfloor.co.za/2024/11/05/the-mathematics-and-game-theory-behind-a-simple-number-game/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Weighting waiting</title>
		<link>https://twentythirdfloor.co.za/2024/05/11/weighting-waiting/</link>
					<comments>https://twentythirdfloor.co.za/2024/05/11/weighting-waiting/#respond</comments>
		
		<dc:creator><![CDATA[David Kirk]]></dc:creator>
		<pubDate>Sat, 11 May 2024 10:43:13 +0000</pubDate>
				<category><![CDATA[complexity]]></category>
		<category><![CDATA[data analysis]]></category>
		<category><![CDATA[distribution]]></category>
		<category><![CDATA[modelling]]></category>
		<category><![CDATA[optimisation]]></category>
		<guid isPermaLink="false">https://twentythirdfloor.co.za/?p=2863</guid>

					<description><![CDATA[Navigating Complexity in Queue Management: Slightly serious insights from the Motor Vehicle Licence Renewal Office Queue management at the motor vehicle licence renewal office offers a window into a realm of complexity that extends far beyond the waiting room. Exploring priority queuing and weighted fair queuing (WFQ), we uncover a world of probabilistic models, dynamic [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Navigating Complexity in Queue Management: Slightly serious insights from the Motor Vehicle Licence Renewal Office</p>



<p>Queue management at the motor vehicle licence renewal office offers a window into a realm of complexity that extends far beyond the waiting room. Exploring priority queuing and weighted fair queuing (WFQ), we uncover a world of probabilistic models, dynamic rules, and real-world applications that challenge conventional wisdom.</p>



<p>Upon arrival, patrons encounter priority queuing, where elderly individuals receive absolute precedence to accommodate potential mobility challenges. While this prioritisation addresses (quite reasonably!) the needs of a vulnerable group, it can lead to excessively prolonged waits for others, depending on the arrival rate of elderly patrons and the dynamics of the queue. Consideration of different objective functions for various demographics, including the young and old, could unveil alternative optimal solutions.</p>



<p>Actuaries are used to implicitly allowing for objective functions that aim to minimise mean squared errors, but this isn&#8217;t the only possibility. Aside from different penalties for waiting times for all participants, explicitly considering different costs to different groups of individuals makes it more interesting.</p>



<p>In contrast to absolute priority queuing, WFQ introduces a probabilistic element, ensuring that even low-priority individuals have a chance of being served at every point in time. The weights can be tuned for those different groups, still achieving prioritisation for the elderly. While wait times for low-priority customers will still be longer than priority customers, they remain finite, underscoring the equitable nature of this approach. I can imagine an algorithm where the weight depends on the wait &#8211; the longer the duration of the existing wait the more an individual is prioritised.</p>



<p>The network packets to which WFQ most commonly applies probability aren&#8217;t conscious, and therefore their experience of the wait isn&#8217;t important. For humans, the conscious experience of knowing that you don&#8217;t have to wait until every individual in a priority group is served before you might make the wait more palatable. I&#8217;m not a fan of gamification; overall this seems to have result in evil outcomes, greedily addictive algorithms and a worse society overall. However, the introduction of a little randomness and the possibility of a serendipitous early shot at renewing a licence might be a net positive.</p>



<p>Beyond the motor vehicle licence renewal office, the principles of queue management find relevance in diverse fields, including insurance companies. By leveraging similar concepts, insurers can prioritise claims payment or customer service based on factors like severity or urgency, but also explicit objective functions to optimise for target response times within particular bands, aiming for prompt resolution while maintaining fairness and efficiency. Sometimes the maths will demonstrate that based on demand and supply of support calls, failing these objectives is inevitable. Modelling can determine how often that may occur and then you can weigh up the costs of more call centre agents with the unappealing customer experiences.</p>



<p>These waiting processes should ring bells from prior study of queuing processes, of exponential, poisson, negative binomial and gamma distributions. These provide a mathematical framework for understanding and optimising queue management, revealing the hidden complexities behind seemingly simple processes. While you may not think about claims processes as queuing processes, there are some surprising linkages there too.</p>



<p>For me, delving into the dynamics of network switching provided some fun insights. In network architecture, switches play a critical role in directing data packets efficiently across networks. However, the limited capacity of switches can lead to packet loss during times of congestion. Buffers within switches temporarily store packets to alleviate congestion, but if overwhelmed, they are forced to drop packets, resulting in packet loss and network underperformance.</p>



<p>A smarter (yet initially counterintuitive step) is to apply Random Early Detection (RED), a mechanism that deliberately drops packets in anticipation of the switch being overwhelmed. Under RED, these strategically dropped packets provide information to network endpoints to manage the speed of transmission to prevent larger problems down the line. To an extent, this can can be likened to passengers on an overbooked flight being paid to take a different flight. However, unlike RED, this approach does not alert endpoints or other passengers to slow transmission rates, highlighting the unique challenges and solutions in network management.</p>



<p>While queue management may appear remote from your regular work, some exploration might be worth the time spent. By embracing probabilistic models, dynamic rules, and real-world applications, we may see a way to apply our skills in new areas, or even learn from the significant advancements in network modelling in our financial services world.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://twentythirdfloor.co.za/2024/05/11/weighting-waiting/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Voice authentication, spoofing and rates of change</title>
		<link>https://twentythirdfloor.co.za/2019/06/06/voice-authentication-spoofing-and-rates-of-change/</link>
					<comments>https://twentythirdfloor.co.za/2019/06/06/voice-authentication-spoofing-and-rates-of-change/#respond</comments>
		
		<dc:creator><![CDATA[David Kirk]]></dc:creator>
		<pubDate>Thu, 06 Jun 2019 07:43:47 +0000</pubDate>
				<category><![CDATA[complexity]]></category>
		<category><![CDATA[FinTech]]></category>
		<category><![CDATA[insight]]></category>
		<category><![CDATA[operational risk]]></category>
		<category><![CDATA[optimisation]]></category>
		<guid isPermaLink="false">https://twentythirdfloor.co.za/?p=2707</guid>

					<description><![CDATA[“My voice is my password† and similar phrases have begun to be used for secure voice authentication for banks and health insurers and other critical services that require security and privacy. It’s likely that several of your own service providers will roll this out in the next couple of years. Progress, right? The problem is [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>“My voice is my password† and similar phrases have begun to be used for secure voice authentication for banks and health insurers and other critical services that require security and privacy. </p>



<p>It’s likely that several of your own service providers will roll this out in the next couple of years. Progress, right?</p>



<p>The problem is that in the short time since voice identification models have become mainstream and slick enough to be used in call centers, voice spoofing technology has exploded. It is now trivial to create voice tracks saying whatever you want them to say without human ears being able to tell any difference, and increasingly, fooling the voice authentication models too. </p>



<p>Worse, we are probably only a few years from trivial video spoofing with the same qualities.</p>



<p>I support the idea of moving away from passwords and improving security, but I struggle to understand how voice authentication is anything other than a tiny blip in the timeline before it becomes the easiest vector for fraud yet.  </p>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://twentythirdfloor.co.za/2019/06/06/voice-authentication-spoofing-and-rates-of-change/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>optimisation gone wrong</title>
		<link>https://twentythirdfloor.co.za/2014/11/21/optimisation-gone-wrong/</link>
					<comments>https://twentythirdfloor.co.za/2014/11/21/optimisation-gone-wrong/#respond</comments>
		
		<dc:creator><![CDATA[David Kirk]]></dc:creator>
		<pubDate>Fri, 21 Nov 2014 03:43:28 +0000</pubDate>
				<category><![CDATA[optimisation]]></category>
		<guid isPermaLink="false">http://twentythirdfloor.co.za/?p=2362</guid>

					<description><![CDATA[I have felt like this before.Â  Check out XKCD for more of this.]]></description>
										<content:encoded><![CDATA[<p>I have felt like this before.Â  Check out <a href="http://xkcd.com">XKCD </a>for more of this.</p>
<p><a href="http://xkcd.com/1445/"><img fetchpriority="high" decoding="async" class="alignnone" src="http://imgs.xkcd.com/comics/efficiency.png " alt="" width="329" height="214" /></a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://twentythirdfloor.co.za/2014/11/21/optimisation-gone-wrong/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Bottlenecks</title>
		<link>https://twentythirdfloor.co.za/2012/08/28/bottlenecks/</link>
					<comments>https://twentythirdfloor.co.za/2012/08/28/bottlenecks/#comments</comments>
		
		<dc:creator><![CDATA[David Kirk]]></dc:creator>
		<pubDate>Tue, 28 Aug 2012 13:24:14 +0000</pubDate>
				<category><![CDATA[complexity]]></category>
		<category><![CDATA[creating value]]></category>
		<category><![CDATA[optimisation]]></category>
		<guid isPermaLink="false">http://twentythirdfloor.co.za/?p=1973</guid>

					<description><![CDATA[It may be time to pull out the old Milo Optimisation Post. It was trivial 5 years ago and it&#8217;s still intended as funny rather than serious, but the sad, sad thing is that the lesson still hasn&#8217;t been learnt in our airports and probably a range of other entities. The security check point is [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>It may be time to pull out the old <a href="https://twentythirdfloor.co.za/2007/07/08/practical-optimisation/">Milo Optimisation Post</a>. It was trivial 5 years ago and it&#8217;s still intended as funny rather than serious, but the sad, sad thing is that the lesson still hasn&#8217;t been learnt in our airports and probably a range of other entities.</p>
<p>The security check point is a bottleneck. More specifically, the number of scanners open at certain rush times isn&#8217;t enough to cope with the arrival rate of passengers at the check point.</p>
<p>The bottleneck is the small number of open scanners. The bottleneck could be fixed and throughout increased by having more scanners. No amount of hurrying up the process to inspect tickets will change the bottleneck. No amount of directing people to stand in queues at each scanner will change the rate at which people go through the scanners (as long as there is always a queue at each of them). None of this changes the throughput of the sytem.</p>
<p>But it does mean that there are extra people employed to inspect tickets and extra handlers directing people to queues &#8211; these employees could presumably operate an extra scanner and massively increase throughput. This might in turn create a bottleneck somewhere else, but if that happens it shows that throughput has already been increased. It also presents an opportunity for the next stage of optimisation.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://twentythirdfloor.co.za/2012/08/28/bottlenecks/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Should South Africa import Chinese TVs?</title>
		<link>https://twentythirdfloor.co.za/2012/05/04/should-south-africa-import-chinese-tvs/</link>
					<comments>https://twentythirdfloor.co.za/2012/05/04/should-south-africa-import-chinese-tvs/#respond</comments>
		
		<dc:creator><![CDATA[David Kirk]]></dc:creator>
		<pubDate>Fri, 04 May 2012 06:00:54 +0000</pubDate>
				<category><![CDATA[competition]]></category>
		<category><![CDATA[creating value]]></category>
		<category><![CDATA[economics]]></category>
		<category><![CDATA[Emerging Markets]]></category>
		<category><![CDATA[optimisation]]></category>
		<category><![CDATA[unemployment]]></category>
		<guid isPermaLink="false">http://twentythirdfloor.co.za/?p=1760</guid>

					<description><![CDATA[Should South Africa import Chinese television sets? Your answer to this question depends probably on your education. If you were university educated in South Africa, you are likely to be in the market at various times in your life for a large LED backlit LCD panel with a high refresh rate and more HDMI inputs [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Should South Africa import Chinese television sets? Your answer to this question depends probably on your education.</p>
<p>If you were university educated in South Africa, you are likely to be in the market at various times in your life for a large LED backlit LCD panel with a high refresh rate and more HDMI inputs than you will ever need. You will also quite likely have a market-oriented, Anglo-Saxon view of government&#8217;s role in industrial policy and international trade. Thus you would probably say &#8220;yes, import cheap TVs from China so I can buy a cheap TV and not pay for inefficient local firms to manufacturer expensive, inferior TVs.&#8221;</p>
<p>If you are a TV snob, you will still want free imports of Chinese TVs to keep the prices down of competing, but fancier Sony and LG models from Japan and Korea.</p>
<p>If you are a little cynical, you might say South Africa could never have the manufacturing capability and scale to produce all the components and assemble them into a modern LCD TV. That&#8217;s not actually the debate I ant to pursue now, so in that case let&#8217;s say the alternative would be to locally assemble sets made with significant local components, even if the LCD panel itself were imported. Of course, the reason South Africa doesn&#8217;t have the scale to produce the panels themselves at the moment is a function of industrial policy decisions decades go. There is no absolute reason we couldn&#8217;t have that capability. But, that debate is related but separate post.<span id="more-1760"></span></p>
<p>If you never completed Grade 8 (that I still think of s Standard 6) then you probably would rather have a job than a Chinese TV and even a single HDMI input or output is one too many. Also, you don&#8217;t care about free international trade leading to optimal allocation of economic resources or the World Trade Association for that matter.</p>
<p>But you wouldn&#8217;t necessarily be wrong.</p>
<p>Reason #1<br />
A large-screen LCD TV is not a factor of production of any industry that I&#8217;m aware of. Restricting cheap imports won&#8217;t increase the costs of a domestic industry an therefore won&#8217;t reduce the competitiveness of a local company or industry.</p>
<p>So far so good.</p>
<p>Reason #2<br />
The Chinese will still buy or raw natural resources even if we don&#8217;t buy their TVs. We aren&#8217;t a sufficiently big market for them in the first place. We don&#8217;t reduce our exports but we do reduce our imports. This grows the local economy.</p>
<p>This does assume that over time, the higher prices of Imported TVs will discourage their purchase for other goods or encourage purchase of South African made TVs. It also assumes,NAND this is where things get more complex quickly, that our currency won&#8217;t strengthen to reflect the reduced imports. A strengthened currency would make all our exports less competitive and imports more competitive, leading to higher imports and lower exports across all industries and consumption.</p>
<p>Reason #3<br />
Te burden if higher prices will fall on the wealthy, whereas the boom of greater employment will fall on the less wealthy, even increasing total demand for labour.</p>
<p>A critical question is what sort of labour.</p>
<p>If it is skilled labour, then our right skilled labour market will have wage pressure without increased employment and there will be a transfer of wealth from television set consumers to skilled labour and an increase in the cost of production of many other industries. All in all not a great outcome. We&#8217;ve damaged several industries and are reliant on the relative consumption habits of skilled labour versus television set consumers to see what this means for domestic versus import consumption.</p>
<p>If the demand is for unskilled labour, or separate but well-timed government education and training policies provide unskilled labour with the necessary skills, the result is far more appealing. Wages won&#8217;t increase as unemployed resources are put to work. So, no damage to other industries. The productive capacity of unemployed persons is put to work in an economically productive way. The country is producing more things domestically so all the additional money spent on more expensive TVs is employed back into the economy. The recently newly employed are likely to focus their purchases on domestically produced items (especially since TVs are now made locally)</p>
<p>Assuming the caloric requirements of these newly employed persons are not much different from during their unemployed years, the opportunity cost for the economy as a whole of paying them to make TVs less efficiently than the Chinese is zero. There is noting better they could have done with their time.</p>
<p>The arguments of comparative advantage totally break down when there is significant unemployment in one country. Free trade is centred on the idea that countries should focus on producing goods where they have a comparative advantage. Quotas and tariffs distort the true comparative advantage leading to suboptimal solutions.</p>
<p>There are other ways of achieving a similar result. Taxing TV set consumption to pay for skills training and subsidised public transport might lower some of the restrictions on supply and demand imbalances in the labour force, but without the focus on growing a particular industrial sector that will give rise to a cluster of related industries, developed scale to lower costs, eventually gain efficiencies and export to African markets with lower cost than the Chinese.</p>
<p>Why should the Chinese target attractive industries for growth through strong industrial policy and South Africa doesn&#8217;t? Why are the Chinese so uniquely well placed to target LG and Samsung?</p>
<p><em>There are a hundred problems with this scenario, including possibly the choice of TV as the product, but there is more to this discussion than the Washington Consensus would have you believe. Disagree, please comment below!</em></p>
]]></content:encoded>
					
					<wfw:commentRss>https://twentythirdfloor.co.za/2012/05/04/should-south-africa-import-chinese-tvs/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How not to calibrate a model</title>
		<link>https://twentythirdfloor.co.za/2011/10/30/how-not-to-calibrate-a-model/</link>
					<comments>https://twentythirdfloor.co.za/2011/10/30/how-not-to-calibrate-a-model/#respond</comments>
		
		<dc:creator><![CDATA[David Kirk]]></dc:creator>
		<pubDate>Sun, 30 Oct 2011 11:12:45 +0000</pubDate>
				<category><![CDATA[complexity]]></category>
		<category><![CDATA[data analysis]]></category>
		<category><![CDATA[measurement]]></category>
		<category><![CDATA[modelling]]></category>
		<category><![CDATA[optimisation]]></category>
		<category><![CDATA[predictive modelling]]></category>
		<guid isPermaLink="false">http://twentythirdfloor.co.za/?p=1593</guid>

					<description><![CDATA[Any model is a simplification of reality. If it isn&#8217;t, then it isn&#8217;t a model as rather is the reality. A MODEL ISN&#8217;T REALITY Any simplified model I can imagine will also therefore not match reality exactly. The closer the model gets to the real world in more scenarios, the better it is. Not all [&#8230;]]]></description>
										<content:encoded><![CDATA[<h3><span class="Apple-style-span" style="font-size: 15px; letter-spacing: normal; line-height: 24px; text-transform: none;">Any model is a simplification of reality. If it isn&#8217;t, then it isn&#8217;t a model as rather is the reality.</span></h3>
<h3>A MODEL ISN&#8217;T REALITY</h3>
<p>Any simplified model I can imagine will also therefore not match reality exactly. The closer the model gets to the real world in more scenarios, the better it is.</p>
<h3>Not all model parameters are created equal</h3>
<p>Part of the approach to getting a model to match reality as closely as possible is calibration. Models will typically have a range of parameters. Some will be well-established and can be set confidently without much debate. Others will have a range of reasonable or possible values based on empirical research or theory. Yet others will be relatively arbitrary or unobservable.</p>
<p>We don&#8217;t have to guess these values, even for the unobservable parameters. Through the process of calibration, the outputs of our model can be matched as closely as possible to actual historical values by changing the input parameters. The more certain we are of the parameters <em>a priori </em>the less we vary the parameters to calibrate the model. The parameters with most uncertainty are free to move as much as possible to fit the desired outputs.</p>
<p>During this process, the more structure or relationships that can be specified the better. The danger is that with relatively few data points (typically) and relatively many parameters (again typically) there will be multiple parameter sets that fit the data with possibly only very limited difference in &#8220;goodness of fit&#8221; for the results. The more information we add to the calibration process (additional raw data, more narrowly constrained parameters based on other research, tighter relationships between parameters) the more likely we are to derive a useful, sensible model that not only fits out calibration data well but also will be useful for predictions of the future or different decisions.</p>
<h3>How not to calibrate a model</h3>
<p><a href="http://www.scientificamerican.com/article.cfm?id=finance-why-economic-models-are-always-wrong">Scientific American has a naive article outlining &#8220;why economic models are always wrong&#8221;</a>. I have two major problems with the story:<span id="more-1593"></span></p>
<ol>
<li>All models are wrong. Some are useful (George Box). &#8220;wrongness&#8221; isn&#8217;t a problem with a model, but lack of usefulness is. The headline demonstrates a starting point poorly informed about the point of economic models.</li>
<li>The calibration approach criticised in the article is an extremely poor way to calibrate a model. No serious researcher thinks that is the right way to calibrate a model. So the article merely creates a straw man and then demonstrates how easy it is to knock the argument over.</li>
</ol>
<h3>Calibration and back-testing on separate data sets</h3>
<p>The right way to calibrate a model is to separate the data-set into at least two independent subsets. Firstly, the &#8220;training set&#8221; or portion from which we will calibrate our parameters to get them to match as closely as possible the data. Again, this should make use of all information available and may give rise to several competing models that appear to fit the data similarly well.</p>
<p>The next step is crucial. We back-test the derived models against the second subset of data. This data comes from the same reality (perhaps a different time period) as used to calibrate the model, but the model won&#8217;t trivially match the data because none of that data was used to calibrate the model in the first place.</p>
<h3>The importance of back-testing</h3>
<p>Back-testing is critically important in the model building process, but back-testing against the same data used to calibrate the model is worth than useless (since it takes time and effort and an create a false sense of accuracy or reliability in the model.) Separating the data into two or more subsets is absolutely required, although it has the unfortunate side-effect of reducing the size of the data-set available for calibration.</p>
<h3>Yes, it really matters.</h3>
<p>A common example of the dangers of bad models fitting data well is with Economic Scenario Generators. These simulate economic scenarios to be used in valuing complex financial securities. If a model is properly calibrated, it will recreate the observable market prices of a wide range of instruments. However, the model could be a black-box neural network, a carefully constructed theoretical model with plausible relationships and constraints, or the proverbial ten thousand (possibly inebriated) monkeys. If all three models are perfectly calibrated to observable market prices, is any of the models inferior to any of the others?</p>
<p>Clearly the answer is yes, but only when it comes to extrapolation. I have far more confidence in the model&#8217;s ability to create &#8220;market consistent&#8221; valuations for instruments that do not have observable prices in the market if I understand how the mechanics of the model make sense on a level other than pure calibration.</p>
<h3>Trivial 3 point example</h3>
<p><figure id="attachment_1594" aria-describedby="caption-attachment-1594" style="width: 1220px" class="wp-caption alignnone"><a href="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/10/model-fitting.png"><img decoding="async" class="size-full wp-image-1594" title="model fitting" src="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/10/model-fitting.png" alt="3 point example of fitted models" width="1220" height="850" srcset="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/10/model-fitting.png 1220w, https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/10/model-fitting-300x209.png 300w, https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/10/model-fitting-1024x713.png 1024w, https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/10/model-fitting-430x300.png 430w" sizes="(max-width: 1220px) 100vw, 1220px" /></a><figcaption id="caption-attachment-1594" class="wp-caption-text">Perfect fit of two models to 3 data points</figcaption></figure></p>
<p>The example above shows a perfect of a quadratic and cubic model to 3 data points. From this graph, both models appear exactly the same.</p>
<p>However, if we use the model to extrapolate to future time periods, the results are very different. Without additional data to back-test the results on, it&#8217;s not possible to tell whether either or any of these models is appropriate, but clearly both can&#8217;t be correct.</p>
<p><figure id="attachment_1595" aria-describedby="caption-attachment-1595" style="width: 1220px" class="wp-caption alignnone"><a href="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/10/model-fitting-extrapolation.png"><img decoding="async" class="size-full wp-image-1595" title="model fitting - extrapolation" src="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/10/model-fitting-extrapolation.png" alt="Example showing extrapolation of two models diverging from each other" width="1220" height="850" srcset="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/10/model-fitting-extrapolation.png 1220w, https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/10/model-fitting-extrapolation-300x209.png 300w, https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/10/model-fitting-extrapolation-1024x713.png 1024w, https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/10/model-fitting-extrapolation-430x300.png 430w" sizes="(max-width: 1220px) 100vw, 1220px" /></a><figcaption id="caption-attachment-1595" class="wp-caption-text">Extrapolation of the two models shows divergent results</figcaption></figure></p>
]]></content:encoded>
					
					<wfw:commentRss>https://twentythirdfloor.co.za/2011/10/30/how-not-to-calibrate-a-model/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Congestion charging in the Netherlands</title>
		<link>https://twentythirdfloor.co.za/2011/08/12/congestion-charging-in-the-netherlands/</link>
					<comments>https://twentythirdfloor.co.za/2011/08/12/congestion-charging-in-the-netherlands/#respond</comments>
		
		<dc:creator><![CDATA[David Kirk]]></dc:creator>
		<pubDate>Thu, 11 Aug 2011 22:06:28 +0000</pubDate>
				<category><![CDATA[economics]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[optimisation]]></category>
		<guid isPermaLink="false">http://twentythirdfloor.co.za/?p=1499</guid>

					<description><![CDATA[Hooked up to the Internet wirelessly and to GPS, the system tabulates a charge for each car trip by using a mileage-based formula thatÂ also takes accountÂ of a car&#8217;s fuel efficiency,Â the time of day and the route.]]></description>
										<content:encoded><![CDATA[<p><a href="http://www.nytimes.com/2011/08/11/science/earth/11meter.html?_r=2&amp;hp">Hooked up to the Internet wirelessly and to GPS, the system tabulates a charge for each car trip by using a mileage-based formula thatÂ also takes accountÂ of a car&#8217;s fuel efficiency,Â the time of day and the route.</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://twentythirdfloor.co.za/2011/08/12/congestion-charging-in-the-netherlands/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Fascinating take on the advantages of reducing parking spaces</title>
		<link>https://twentythirdfloor.co.za/2011/07/15/fascinating-taking-on-the-advantages-of-reducing-parking-spaces/</link>
					<comments>https://twentythirdfloor.co.za/2011/07/15/fascinating-taking-on-the-advantages-of-reducing-parking-spaces/#respond</comments>
		
		<dc:creator><![CDATA[David Kirk]]></dc:creator>
		<pubDate>Fri, 15 Jul 2011 06:30:33 +0000</pubDate>
				<category><![CDATA[economics]]></category>
		<category><![CDATA[insight]]></category>
		<category><![CDATA[optimisation]]></category>
		<guid isPermaLink="false">http://twentythirdfloor.co.za/?p=1284</guid>

					<description><![CDATA[Stand aside Freakonomics, here is a very real, very current, very practical application of economics, incentives and game theory to a universal city development problem. Provide fewer parking spaces to help manage the car and parking problem in congested downtown areas. Bit by bit, for the past 40 years, the city of Copenhagen has done [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Stand aside Freakonomics, here is a very real, very current, very practical application of economics, incentives and game theory to a universal city development problem. <a href="http://news.nationalgeographic.com/news/energy/2011/07/110713-cutting-down-on-city-parking/">Provide fewer parking spaces to help manage the car and parking problem in congested downtown areas</a>.</p>
<blockquote><p>Bit by bit, for the past 40 years, the city of Copenhagen has done something revolutionary: The Danish capital has reduced its parking supply. Cutting the total number of parking spaces by a small percentage each year stands in stark contrast to the more common pattern of cities adding more and more parking to accommodate private cars.</p></blockquote>
<p>It&#8217;s a longish article, but definitely worth reading. Hat-tip to Samora Adams of <a href="http://twitter.com/#!/capechat">@CapeChat</a> fame for the link.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://twentythirdfloor.co.za/2011/07/15/fascinating-taking-on-the-advantages-of-reducing-parking-spaces/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>The Primary Cause of Structural Unemployment in South Africa: Poor Education Standards and Policy</title>
		<link>https://twentythirdfloor.co.za/2011/06/11/structural-unemployment-and-education/</link>
					<comments>https://twentythirdfloor.co.za/2011/06/11/structural-unemployment-and-education/#comments</comments>
		
		<dc:creator><![CDATA[David Kirk]]></dc:creator>
		<pubDate>Sat, 11 Jun 2011 12:51:23 +0000</pubDate>
				<category><![CDATA[creating value]]></category>
		<category><![CDATA[economics]]></category>
		<category><![CDATA[Emerging Markets]]></category>
		<category><![CDATA[insight]]></category>
		<category><![CDATA[measurement]]></category>
		<category><![CDATA[optimisation]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[unemployment]]></category>
		<category><![CDATA[education]]></category>
		<guid isPermaLink="false">http://twentythirdfloor.co.za/?p=1126</guid>

					<description><![CDATA[South Africa&#8217;s unemployment is a different creature from that in the US and in the developed world&#8217;s papers at the moment. We don&#8217;t have a cyclical lack of demand (although demand isn&#8217;t as robust as I&#8217;d like). Â We have massive, unmanaged structural unemployment in large sectors of the economy. I say &#8220;in large sectors of [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>South Africa&#8217;s unemployment is a different creature from that in the US and in the developed world&#8217;s papers at the moment. We don&#8217;t have a cyclical lack of demand (although demand isn&#8217;t as robust as I&#8217;d like). Â We have massive, unmanaged structural unemployment in large sectors of the economy.</p>
<p>I say &#8220;in large sectors of the economy&#8221; because it isn&#8217;t true to say that we have universal unemployment. In fact, a feature of structural unemployment is that it usually is not uniform throughout the economy (like cyclical unemployment often is). Â I don&#8217;t know any actuaries or engineers who are unemployed for more than a brief period between jobs, and usually the jobs start and end back to back. There will be other examples too.</p>
<h3>Unemployment is driven by education</h3>
<p>Interesting that 75% of our unemployed are &#8220;unskilled&#8221;. (I heard this on the radio, so I don&#8217;t know that Â the number is correct or it&#8217;s source, but it does map to my previous <a href="https://twentythirdfloor.co.za/2010/12/01/there-isnt-one-labour-market/">analysis based on census showing unemployment by education level attained</a>.</p>
<ul>
<li>The unemployment rate for those with less than &#8220;matric with university exemption&#8221; is between 30% and 40%.</li>
<li>Matric with university exemption unemployment is 23%</li>
<li>The unemployment rate for this with better than &#8220;matric with university exemption&#8221; is on average below 10%.</li>
</ul>
<p><figure id="attachment_947" aria-describedby="caption-attachment-947" style="width: 1024px" class="wp-caption aligncenter"><a href="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2010/12/UnemploymentByEducation.png"><img loading="lazy" decoding="async" class="size-large wp-image-947" title="Supply and Demand for Labour" src="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2010/12/UnemploymentByEducation-1024x851.png" alt="Supply and Demand for Labour" width="1024" height="851" srcset="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2010/12/UnemploymentByEducation-1024x851.png 1024w, https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2010/12/UnemploymentByEducation-300x249.png 300w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a><figcaption id="caption-attachment-947" class="wp-caption-text">Supply and Demand for Labour</figcaption></figure></p>
<p>Economic growth isn&#8217;t the only solution to unemployment; in fact it&#8217;s not even necessarily a solution. Â Prior periods of strong economic growth added jobs only very slowly. We have massive, structural unemployment in this country. We are making some of the right noises with our government&#8217;s new jobs plan and jobs fund.</p>
<h3>Education in South Africa is not performing as needed</h3>
<p>However, given the obvious relationship to education, why don&#8217;t we take the <a href="http://www.timeslive.co.za/local/article1111297.ece/4303-unqualified-teachers-teaching-in-KZN--DA">problems of our education system seriousl</a>y?<span id="more-1126"></span></p>
<ul>
<li>Standards have dropped (although enrollment has increased, which is also critically important for improving average education attainment)</li>
<li>While enrollment has increased, the percentage of GDP spent on education has dropped from 6.4% in 1994/1995 to 5.3% in 2006/2007. This is partly explained by an increase in government spending in total related to social programmes. The real expenditure per learner has increased by approximately 5% per year from 2000 to 2007. We still spend a high proportion of our budget on education, but with poor outcomes.</li>
<li>We don&#8217;t seem to participate in as many international standardised tests as before (reflecting a lack of appreciation for wanting to know what our standards are actually like)</li>
<li>Standards are too low so that passing isn&#8217;t sufficient for further education / job placement</li>
<li>&#8220;Literacy&#8221; measures have improved, although this is measured as having completed 7 grades of education. Why is it so hard to appreciate the need to Â use measures (or at least also use measures) independent of the system to measure the success of the system?</li>
<li>The <a href="http://www.education.gov.za/LinkClick.aspx?fileticket=kKd2AHtjxYo%3d&amp;tabid=358&amp;mid=1261&amp;forcedownload=true">Department of Educations 2009 Macro</a> report uses only 1999 and 2003 data from TIMSS. Â It shows our results are very low, but have not decreased by much. We didn&#8217;t participate in 2007 (probably because it&#8217;s embarrassing coming bottom of the class), which is a shame. 2003 data is really not appropriate to be using in 2011 to evaluate performance of our education system. (It looks like we are at least signed up to participate in 2011, which is great news. We&#8217;ll have to wait till December 2012 to get the results though.)</li>
<li>The Quality Improvement, Development, Support and Upliftment Programme has budget allocated per province to spend on improving education. Â While the Free State managed to spend 99% of its budget and the Western Cape 96%, the Eastern Cape spent only 51%, Limpopo 36% and KZN an impressive 11%. This is also home to possibly the worst, most impossible to read, mixed-numbers, mixed-decimal point table I have ever seen.</li>
</ul>
<p style="text-align: center;">
<p><figure id="attachment_1134" aria-describedby="caption-attachment-1134" style="width: 819px" class="wp-caption aligncenter"><a href="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/06/Budget-spending.png"><img loading="lazy" decoding="async" class="size-large wp-image-1134 " title="Budget spending" src="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/06/Budget-spending-1024x536.png" alt="" width="819" height="429" srcset="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/06/Budget-spending-1024x536.png 1024w, https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/06/Budget-spending-300x157.png 300w, https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/06/Budget-spending.png 1138w" sizes="auto, (max-width: 819px) 100vw, 819px" /></a><figcaption id="caption-attachment-1134" class="wp-caption-text">What does this table even mean? Except that provinces are generally not even spending the budget allocated to improve underperforming schools. How is it even possible that the Eastern Cape has so little budget allocated to this problem when they are one of the biggest culprits when it comes to poor school infrastructure and poor education results?</figcaption></figure></p>
<p>&nbsp;</p>
<h3>International indicators of performance</h3>
<p>TIMSS 1999 Rock-bottom in Maths and Science. 6 provinces results went backwards in Maths and Science. The DoE&#8217;s report indicates that our syllabus has the least overlap with the TIMSS assessment framework &#8211; this offered as an excuse for poor performance (which it is) but without even considering that maybe that is a problem in itself. Should our education system really be going about things in a different way to established international norms? Maybe, but I think that needs to be proved and the default position should be international standards unless otherwise proved.</p>
<p>PIRLS 2006 Rock-bottom in reading, although this is against primarily developed countries (and only above Kuwait and Qatar in terms of gender inequality of reading education) (<a href="http://timss.bc.edu/PDF/P06_IR_Ch1.pdf">Chapter 1</a> and <a href="http://timss.bc.edu/PDF/PIRLS2006_international_report.pdf">full report</a>) (Curiously, other measures including our own Department of Education and SACMEQ studies seem to show girls outperforming boys, rather than the other way around.)</p>
<p>South Africa&#8217;sÂ <a href="http://www.iiep.unesco.org/fileadmin/user_upload/Info_Services_Newsletter/pdf/eng/2010/2010_3En.pdf">SACMEQ scores didn&#8217;t Â change significantly from 200 to 2007</a> &#8211; whereas only one peer country had a reading score decline and 2 had mathematics scores decline. and 14 countries&#8217; scores increased across maths and science. The percentage of students not sharing a textbook declined from 45.5% in 2000 to 45.0% in 2007. We are not making progress.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<dl id="attachment_1129" class="wp-caption aligncenter" style="width: 910px;">
<dt class="wp-caption-dt"><a href="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/06/education-and-enrollment.png"><img loading="lazy" decoding="async" class="size-full wp-image-1129" title="education and enrollment" src="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/06/education-and-enrollment.png" alt="" width="900" height="662" srcset="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/06/education-and-enrollment.png 900w, https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/06/education-and-enrollment-300x220.png 300w" sizes="auto, (max-width: 900px) 100vw, 900px" /></a></dt>
<dd class="wp-caption-dd">The link between enrollment and attainment levels is clear, but more clearly than that South Africa is massively underperforming.Curiously, the DoE&#8217;s report seems to suggest that a reason for our low attainment is high enrollment, whereas the graph above shows that high enrollment is associated with high attainment for those enrolled. My guess at the cause of this strong correlation is that &#8220;countries that take education seriously focus on both enrollment and attainment&#8221;.</dd>
</dl>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><span style="font-size: 15px; font-weight: bold;">Some South African problems with matric pass rate measurement</span></p>
<p>The pass rate of matric exams is a function of the quality of education (higher means higher pass rate), standards (higher means lower pass rate) and selection of learners who write the exam (restricting it to only relatively strong students artificially increases the pass rate). We should not celebrate an increase in the pass rate unless we have shown that standards of the exam have not been decreased and that learners weren&#8217;t discouraged from writing the exam. I would suggest that the standard of the test is more likely to vary from one year to the next rather than miraculous changes in education quality levels for learners who have had 12 years (or more&#8230;) of education to get there.</p>
<p>For example, this graph worries me no end.</p>
<p><figure id="attachment_1131" aria-describedby="caption-attachment-1131" style="width: 767px" class="wp-caption aligncenter"><a href="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/06/candidates-and-pass-rate.png"><img loading="lazy" decoding="async" class="size-full wp-image-1131" title="candidates and pass rate" src="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/06/candidates-and-pass-rate.png" alt="" width="767" height="530" srcset="https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/06/candidates-and-pass-rate.png 767w, https://twentythirdfloor.co.za/blog_files/wp-content/uploads/2011/06/candidates-and-pass-rate-300x207.png 300w" sizes="auto, (max-width: 767px) 100vw, 767px" /></a><figcaption id="caption-attachment-1131" class="wp-caption-text">As the number of candidates writing the exam goes up, so the pass rate comes down. This reflects progress in keeping learners in school on the one hand, but also likely over-eager promotion of students at lower grades. As the number of candidates reduces (as steps are taken to ensure non-trivial promotion) the pass rate trends back up again. From this graph it&#39;s hard to know whether the pass rate tells us anything at all.</figcaption></figure></p>
<p>I&#8217;m not going to show the real/nominal expenditure per capita because the glaring errors in the &#8220;2006 real expenditure per capita column&#8221; suggests to me that the creator of the table needs to go back to school.</p>
<h3>Conclusions?</h3>
<p>This post has been more of a collection of observations and thoughts and extracts from other research. In summary:</p>
<ol>
<li>Education is key to unemployment and growth. Unless we recognise that education is the most important long-term solution to structural unemployment we can&#8217;t take the problem seriously. Skilled citizens by and large are employed. Unskilled citizens are unemployed at 30% to 40% levels.</li>
<li>Government spends significant budget on education, but with poor outcomes. Some budget available is not being spent at all.</li>
<li>Measures of literacy and matric pass rates are fundamentally flawed. We need to place increased focus on outcomes compared to international standards if our measures are to be useful.</li>
<li>We need to participate more, and more regularly, in international comparatives, no matter how embarrassing the current results are.</li>
<li>Current performance against international (and other African country) performance is poor and not improving.</li>
<li>The quality of research and ability to recognise the problems in our education system by the Department of Education itself needs to be improved.</li>
</ol>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://twentythirdfloor.co.za/2011/06/11/structural-unemployment-and-education/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
	</channel>
</rss>
