<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>fa &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/fa/</link>
	<description>Feed of posts on WordPress.com tagged "fa"</description>
	<pubDate>Thu, 21 Aug 2008 13:03:16 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[My Next Job Role]]></title>
<link>http://elliotpearson.wordpress.com/?p=62</link>
<pubDate>Wed, 20 Aug 2008 23:44:06 +0000</pubDate>
<dc:creator>elliotpearson</dc:creator>
<guid>http://elliotpearson.wordpress.com/?p=62</guid>
<description><![CDATA[On a slightly lighter note, it looks like a vacancy has become available that I am more than capable]]></description>
<content:encoded><![CDATA[<p>On a slightly lighter note, it looks like a <a title="Pearson appointed new FA Chief" href="http://news.bbc.co.uk/sport1/hi/football/internationals/7573544.stm" target="_blank">vacancy</a> has become available that I am more than capable of filling, and shall be looking to submit my application forthwith.</p>
<p style="text-align:center;"><a href="http://elliotpearson.files.wordpress.com/2008/08/facrest_thruwindow_l.jpg"><img class="size-full wp-image-63 aligncenter" src="http://elliotpearson.wordpress.com/files/2008/08/facrest_thruwindow_l.jpg" alt="Elliot Pearson's new workplace" width="488" height="210" /></a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Robert na Radio]]></title>
<link>http://rooneyfanbrazil.wordpress.com/?p=280</link>
<pubDate>Tue, 19 Aug 2008 18:17:32 +0000</pubDate>
<dc:creator>Diana</dc:creator>
<guid>http://rooneyfanbrazil.wordpress.com/?p=280</guid>
<description><![CDATA[Oi, gente! Durante toda a semana passada, Jason Scwartzman, irmão do Robert, participou de um progr]]></description>
<content:encoded><![CDATA[<p>Oi, gente! Durante toda a semana passada, Jason Scwartzman, irmão do Robert, participou de um programa de rádio na Indie 103.1. Pois bem, na sexta, o Robert também participou do programa. Quem entende de inglês e quiser ouvir, tá aqui o <a title="Indie 103.1" href="http://www.indie1031.com/manage/mng_assets/view_asset.php?media_id=3386">link</a>.</p>
<p>-Di</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[PCA / FA tricky preprocessing]]></title>
<link>http://rip94550.wordpress.com/?p=310</link>
<pubDate>Sat, 16 Aug 2008 23:32:21 +0000</pubDate>
<dc:creator>rip</dc:creator>
<guid>http://rip94550.wordpress.com/?p=310</guid>
<description><![CDATA[Introduction
I have stumbled across a tricky point in the preprocessing of data. The most relevant p]]></description>
<content:encoded><![CDATA[<h2>Introduction</h2>
<p>I have stumbled across a tricky point in the preprocessing of data. The most relevant post is probably</p>
<p><a href="http://rip94550.wordpress.com/2008/04/07/pca-fa-example-4-davis-review-2/">this</a> of April 7. Rather than lecture, let me ask and answer some questions. The fundamental question is:<br />
<strong>Can I inadvertently reduce the rank (the dimensionality) of the data matrix?</strong><br />
The answer is yes.</p>
<p>Suppose we have a data matrix of full rank. Suppose the matrix is a typical one, in having more rows than columns. That the matrix be of full rank is equivalent to: the columns are linearly independent.</p>
<p>There is a serious asymmetry here: not all of the rows are linearly independent.</p>
<p>We might as well imagine some specific numbers. Suppose we have 3 columns and 5 rows. Since we assume it is of full rank, the rank of the matrix is 3.</p>
<p>The term "centering" means to "make zero-mean." A centered column is one with zero mean = zero sum; a centered row is a row whose mean (hence sum) is zero..</p>
<p><strong>What happens to the rank of the data matrix if we only row-center the data?</strong><br />
The rank decreases by 1.</p>
<p>Visualize the matrix as 3 column-vectors c1, c2, c3 of length 5. That the row sums (= row means) are zero says that c1 + c2 + c3 = 0, so the three columns are linearly dependent and the matrix is of rank 2.</p>
<p><strong>What happens to the rank of the data matrix if we only column-center the data?</strong><br />
Nothing.</p>
<p>Visualize the matrix as 5 row-vectors r1, r2, r3, r4, r5 of length 3. We have more than 3 vectors of length 3, so they span a 3D space, but no larger. Adding the constraint r1 + r2 + r3 + r4 + r5 = 0 imposes, in general, no additional restriction. (If they had somehow spanned a 5D space, it would, but they can't.)</p>
<p><strong>What happens to the rank of the data matrix if we only set the row sums to 1 (or 100), i.e. to a nonzero constant value?</strong><br />
Nothing.</p>
<p>All we’ve done is assert that r1 + r2 + r3 = 1, a constant vector. These 4 vectors are linearly dependent, but the original 3 are not.</p>
<p>But. It has another potential effect, probably undesirable.</p>
<p>If we were to use the resulting data matrix for a regression, we would find ourselves in trouble. We almost always want to adjoin a column of 1s to the data matrix, in order to include a constant term in the regression equation. We just got through saying that the combination r1, r2, r3, 1 is linearly dependent: the regression will explode with a singular matrix. Once we have set the row sums, we would have to drop a column of data in order to include a constant term. This is the same problem we face in regression when we define instrumental (dummy) variables.</p>
<p><strong>What happens to the rank of the data matrix if we only set the column sums to 1 or some other nonzero constant value? (I’ve never seen it done, but why not, at least in principle?)</strong><br />
Nothing. (It even has no effect on regression.)</p>
<h2>First Summary</h2>
<p>So, there were 4 cases: whether we set row or column sum to a constant value, and whether that constant was zero or not. Of those 4 cases, only one (row sum = 0) reduces the rank of the data matrix.</p>
<p>What I was unclear about – or downright wrong about – on April 7 was in saying that we would lose rank by setting the row sums to 1 or 100 etc. Not so; none of the other 3 cases reduce the rank of the matrix.</p>
<p><strong>Is that it?</strong><br />
No. All those questions were about one single operation. What if we combine operations?</p>
<p><strong>Can't we center both the rows and the columns?</strong><br />
Yes. We saw<br />
<a href="http://rip94550.wordpress.com/2008/04/13/pca-fa-example-4-davis-review-3/">here</a> on April 13 that we could doubly-center the data.</p>
<p><strong>Does that mean we lose rank?</strong><br />
Yes, because we are centering the rows. Centering the columns is irrelevant.</p>
<p><strong>Can we set the row sums to 1 and then center the columns?</strong><br />
Yes.</p>
<p>But something else will happen. Centering the columns is no longer irrelevant.</p>
<p><strong>Didn’t we see that if the row sums were constant, and then we centered the data, the row sums went to zero?</strong><br />
Yes. It may seem weird, but it's true.</p>
<p>That’s an easy way to get doubly-centered data using Mathematica®.  Scale the rows so they each sum to 1, then center the columns. Voila’, the row sums will change to zero.</p>
<p>Any time you start messing with row and column sums or means, remember the grand mean, too: the average of all the data. It is also both the average row mean, and the average column mean. If the columns all have zero mean, then the grand mean is zero. Then the mean of the rows (edit: i.e. of the row means) must be zero. The challenge is to show that the rows still have a common sum (edit: equivalently, a common mean); then that common <span style="text-decoration:line-through;">sum</span> mean must be the mean of the rows, i.e. zero.</p>
<p><strong>If we set the row sums, say to 1, and then column-center the data, do we lose rank?</strong><br />
Yes.</p>
<p>Column-centering (or standardizing) the data after setting the row sums will reset the row sums to zero, and that loses rank. If it is appropriate, however, that the data be column-centered, so be it. I do not believe that reduction of rank is sufficient grounds for not centering the data.</p>
<h2>Second summary</h2>
<p>The apparently innocuous act of column-centering can lose rank, if we apply it to nonzero-constant-row-sum data. We can do it, and sometimes we should do it, but we should expect to lose rank when we do. But we’re losing rank because we first set the row sums, even though to a nonzero constant.</p>
<p>I had previously said I would favor doubly-centered data. Now I am inclined not to do so without cause, simply because it reduces the rank of the matrix.</p>
<p><strong>Can I inadvertently reduce the rank (the dimensionality) of the data matrix?</strong><br />
Hell yes. In particular, we might find that we effectively centered the data without realizing it.</p>
<p>Suppose we set the row sums of our data to 1, say, and then we decide that rather than do an SVD of the new matrix, we will do an eigendecomposition of the covariance (or correlation) matrix.</p>
<p>Oops. Computing either the covariance or correlation matrix is tantamount to column-centering the data.</p>
<p><a href="http://rip94550.wordpress.com/2008/03/10/pca-fa-example-4-davis-covariance-correlation-and-all-that/">here</a> on March 10.</p>
<p>Goodbye full rank.</p>
<h2>Third summary</h2>
<p>Suppose we have data for which a constant nonzero row sum is appropriate. Suppose we choose to do an eigendecomposition of the covariance (or correlation) matrix.</p>
<p>Then we lose rank. Constructing either of those smaller matrices implicitly centers the columns, and that in turn implicitly changes the row sums of the data to zero.  Even if we never explicitly compute the transformed data.</p>
<p>The clearest path in such a case might well be as follows. First set the row sums to 1 or whatever nonzero. Then column-center or standardize the data. We will see the rank drop by 1 at that point. Then do an SVD. The only advantage to doing it this way, rather than via the covariance or correlation matrices, is that we see when we lose full rank.</p>
<p>If we live in a universe where data is supposed to be centered, or where the covariance or correlation matrix is appropriate, then we will lose rank if, in addition, the data had constant row sums.</p>
<h2>Final summary</h2>
<p>0. We could set row or column sums to zero or to a nonzero constant.<br />
1. Setting row sums to zero is the only one of the four cases that will reduce rank.<br />
2. Column-centering applied to data with constant row sums leaves us still with constant row sums but the sums have been changed to zero.  This gives us (1) and loss of rank.<br />
3. An accidental way to achieve (2) and thus (1) is to analyze the covariance (or correlation) matrix of constant-row-sum data.</p>
<p>It's not a problem if you know what happened and why.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Tutto quanto fa FERRAGOSTO]]></title>
<link>http://incosicilia.wordpress.com/?p=52</link>
<pubDate>Sat, 16 Aug 2008 09:41:44 +0000</pubDate>
<dc:creator>incosicilia</dc:creator>
<guid>http://incosicilia.wordpress.com/?p=52</guid>
<description><![CDATA[In Liguria sarà un Ferragosto all’insegna del maltempo. Il passaggio di una perturbazione, infatt]]></description>
<content:encoded><![CDATA[<p>In Liguria sarà un Ferragosto all’insegna del maltempo. Il passaggio di una perturbazione, infatti, creerà forti instabilità con possibili rovesci su tutto il territorio. I temporali, anche di forte intensità, potranno essere accompagnati da grandine, vento da Sud-ovest anche fino a 70 chilometri orari e fulmini, in particolare nelle zone dello Spezzino e dell’Imperiese. Nella serata di oggi arriverà forte vento settentrionale nel Genovese. Il mare sarà molto mosso. Il tempo migliorerà domani, anche se il mare rimarrà molto mosso nella zona della Spezia. Per domenica è previsto un parziale aumento dell’instabilità con possibili rovesci locali o temporali. Intanto, tempo permettendo, sono tanti e molto vari i richiami per vivere al meglio i festeggiamenti di metà agosto legati alla giornata di oggi, ferragosto e domani. Nel comune di Sori oggi è la giornata clou dei festeggiamenti dedicati alla Madonna. Al mattino ci saranno le celebrazioni religiose, in serata, dalle 21.30, la suggestiva processione dei Cristi lignei per le stradine della cittadina e, sull’arenile, la tradizionale «sparata» dei mortaretti. Verso le 23.30 chiusura con lo spettacolo pirotecnico sul mare. A Genova Bolzaneto, in via Brasile, la società operaia cattolica «San Rocca di Brasile» organizza la 31ª edizione della «Sagra della melanzana». La manifestazione comincia oggi e prosegue anche domani e domenica. <br><br>Fonte: http://www.ilgiornale.it/a.pic1?ID=283602</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Gratis refillkort]]></title>
<link>http://guldsara.wordpress.com/?p=218</link>
<pubDate>Fri, 15 Aug 2008 20:31:45 +0000</pubDate>
<dc:creator>Queen Sara</dc:creator>
<guid>http://guldsara.wordpress.com/?p=218</guid>
<description><![CDATA[Vanligtvis brukar jag skita i de diverse gratiskampanjer som sprids i vår svenska bloggosfär. Men ]]></description>
<content:encoded><![CDATA[<p>Vanligtvis brukar jag skita i de diverse gratiskampanjer som sprids i vår svenska bloggosfär. Men idag hittade jag en sida till och med JAG kan erkänna att jag kommer ha gryyym användning av; mobilkostnader är en stor post varje månad; jag behöver spara pengar - vad är då bättre än GRATIS refillkort? Funkar dessutom till en mängd operatörer.</p>
<p>Är du som jag äckligt duktig på att slösa stora summor på sms och samtal? <a title="GRATIS refillkort" href="http://www.gratisrefill.se/?r=20355" target="_blank">Bli medlem du också</a>. Kostar inte ett skvatt, man behöver typ bara gå in på lite hemsidor osv. (inte köpa något). Goodie för plånboken.</p>
<p> </p>
<p>-------------------</p>
<p>Btw. Amy Winehouse verkar vara oerhört poppis ftm, apropå hennes kollektion av makeup och accessoarer möjligen. Verkligen en tjej på ropet.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Sabrina pergunta: ]]></title>
<link>http://saudadedalagartixa.wordpress.com/?p=17</link>
<pubDate>Thu, 14 Aug 2008 16:45:49 +0000</pubDate>
<dc:creator>saudadedalagartixa</dc:creator>
<guid>http://saudadedalagartixa.wordpress.com/?p=17</guid>
<description><![CDATA[Eu amo o cantor Chris Brown,gostaria muito de conhece-lo pessoalmente tenho apenas 15 anos,mais meu ]]></description>
<content:encoded><![CDATA[<p><span style="font-size:11pt;font-family:&#34;"><strong>Eu amo o cantor Chris Brown,gostaria muito de conhece-lo pessoalmente tenho apenas 15 anos,mais meu coração ja foi ocupado por esse cantor,e gortaria muito que vcs me ajudacem a conhece-lo.Obrigado pela a sua atencão</strong></span></p>
<p><span style="font-size:11pt;font-family:&#34;">Olá querida Sassá;</span></p>
<p><span style="font-size:11pt;font-family:&#34;">Ora, o que é isso. É sempre um prazer poder ajudar!</span></p>
<p><span style="font-size:11pt;font-family:&#34;">Mande sua foto 3X4, uma de corpo inteiro, preencha o formulário e vamos estar enviando sua candidatura ao posto. </span></p>
<p><span style="font-size:11pt;font-family:&#34;">(não comenta com ninguém, mas ouvi falar que uma tal de Rihanna tava no pé dele. Mas com um nome desses, deve ser baranga.) Tenha fé!</span></p>
<p><span style="font-size:11pt;font-family:&#34;">beijos,meliga!</span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Begins on a Winning Note...]]></title>
<link>http://manutdmaniacs.wordpress.com/?p=42</link>
<pubDate>Wed, 13 Aug 2008 07:40:13 +0000</pubDate>
<dc:creator>Varun</dc:creator>
<guid>http://manutdmaniacs.wordpress.com/?p=42</guid>
<description><![CDATA[They are back, the RED DEVILS. They beat Pompey, though not comprehensively, as it took Penalty shoo]]></description>
<content:encoded><![CDATA[<p>They are back, the RED DEVILS. They beat Pompey, though not comprehensively, as it took Penalty shoot-outs to finally break the deadlock. Huh!</p>
<blockquote><p>Portsmouth - Johnson misses! Man United retain the Community Shield!</p></blockquote>
<p>Here's the full report on the winning start-</p>
<p><a href="http://www.espnstar.com/football/premier-league/news/detail/item101071/Man-Utd-beat-Pompey-3-1-on-pens/" target="_blank">http://www.espnstar.com/football/premier-league/news/detail/item101071/Man-Utd-beat-Pompey-3-1-on-pens/</a></p>
<p>Hey, EPL is about to begin, start scheduling yourself, book your slots to see some great kick-starters in the first 2-3 weeks.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Pessoas reais num mundo surreal I]]></title>
<link>http://vidaemposts.wordpress.com/?p=300</link>
<pubDate>Sun, 10 Aug 2008 20:26:32 +0000</pubDate>
<dc:creator>Maíra</dc:creator>
<guid>http://vidaemposts.wordpress.com/?p=300</guid>
<description><![CDATA[ 

Era mais um final de semana como outro qualquer na capital paranaense. Estava frio, cinza e uma ]]></description>
<content:encoded><![CDATA[<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"> </p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">Era mais um final de semana como outro qualquer na capital paranaense. Estava frio, cinza e uma chuva fina e gelada caia ininterruptamente. Era dia de sofá, a preguiça assim determinou.</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Eu escolho o filme hoje.</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- De jeito nenhum! Eu escolho o filme hoje.</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Certo, vamos fazer iguais pessoas adultas fariam.</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Hum.. cara ou coroa?</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Não! Isso é para franguinhos e não somos franguinhos. Quer dizer.. você é..</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- A quem ta chamando de franguinha, hein? Hein? HEIN?</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Então vamos lá.. eu tenho um desafio pra você. Se você conseguir vencer, eu assisto o que você quiser.. nem que isso envolva aqueles malditos filmes do Harry Potter.</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Fechado!</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Então.. é o <span style="color:#000000;">seguinte... Faça uma matriz transposta da identidade, ache seu determinante e a sua jacobiana. Chamando o determinante da transposta de "x" e sendo o mesmo um espaço percorrido num tempo "t", onde "t" seja a jacobiana da matriz. Integre os resultados em função de "t" achando assim a velocidade. Decomponha a velocidade no espaço R3 em seus autovetores originais i, j e k. Após isso, calcule o produto interno do vetor velocidade encontrado com a matriz identidade prévia e me diga o resultado. Fácil assim. Tem 15 minutos!</span></span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;color:#000000;line-height:150%;"><span style="font-family:Times New Roman;">- Não preciso de 15 minutos, já sei a resposta.</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;color:#000000;line-height:150%;"><span style="font-family:Times New Roman;">- Já?</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;color:#000000;line-height:150%;"><span style="font-family:Times New Roman;">- Sim. Jacobiana se fez Jacobiana pela dissecação do seu vetor externo, para, assim, atrair vetores convergente numa soma enlouquecida de operações de vetores que, então, se tornariam internos. Entendo, portanto, que a transposta da matriz é, na verdade, a inversão da identidade da matriz, algo que muito me chocou!!! Pois ao saber que o mesmo, ou mesma, queria decompor o escalar da velocidade em várias posições dos seus autovetores no espaço R3. Fazendo para isso uso, só posso pensar eu, das mais obscuras relações matemáticas. Portanto, me sinto obrigada a ser determinante com a Matriz e sua nova identidade transposta e inversa e devo alertá-lo da impossibilidade da multiplicação de matrizes de raízes diferentes. Mas esclarecendo que se pode, ainda, integrar o "x" bem ao tempo "t", e, ao integrá-lo, tornar-se-á uma constante em sua vida e assim juntos viverão felizes para sempre, mas sem que ninguém derive, pois a derivada de uma constante nada mais é do que zero!!! E então?</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Sou seu fã, sabia?- diz entre risos - É difícil achar uma outra pessoa com tanto talento para ser excêntrica.</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Uiiii..Que medooo!</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Medo? Por quê? </span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Não tenho certeza se quero ter fãs.. Lembra o que aconteceu com o Lennon?</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Ah! Mas eu não te mataria.. Não pelo menos não como fizeram com o Lennon..Você precisa de uma morte digna de você. Algo grandioso. Tinha que ser igual a do Kennedy, assim, na frente de milhões!! A do Lennon nem filmada foi...</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Eh, vendo por esse ângulo...não quero só escrever: "saio da vida pra entrar pra historia"..quero dizer em alto e bom som para as multidões que me amavam..</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Que te amavam não!! Que te amam e amarão, pois você nunca será esquecida. Estará para sempre no coração de todos os que um dia tiveram a felicidade de te conhecer. Será eterna, pois seu nome nunca morrerá. Será passado de geração para geração, na palavra escrita e falada, pois todos lembrarão do tempo em que o mundo tinha você...</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Ehh..e todos te odiarão..e o pior.. você vai usar aquelas roupas cinzas de prisão e bem.. você fica horrível de cinza. </span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Bem, na verdade eu sempre fico bonitinho, mas vou ter um uniforme diferente: preto. Pra todos saberem quem foi o causador da maior desgraça da terra. Pra saberem quem destruiu o sonho de milhões. Claro que escreverei um livro sobre minha, ou melhor, nossa vida, que será transformado em filme e ganharei milhões. </span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Milhões?</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Sim, até serei entrevistado no programa do Jô, no Late Show, etc. todos querendo entender o porque. Então direi: "Porque antes dela ser do mundo, ela havia sido apenas minha e vocês tiraram isso de mim. Então a tirei de vocês. Espero que gostem da sensação, seus malditos, malditos, todos vocês!!!".</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Não sabia que era tão possessivo assim comigo.</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Não sou... só um sentimento de posse doentiamente controlado, o resto é cena.. Você sabe que sou um puta de um ator né! Na verdade vou fazer tudo isso pela fama...</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Que isso.. nós sabemos que a culpa irá te corroer e você viverá pra sempre atormentado com a minha presença..</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Ahh! Mas eu já vivo atormentado com sua presença em dias normais..</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Como é que é?</span></span></p>
<p class="MsoNormal" style="line-height:150%;text-align:justify;margin:0;"><span style="font-size:13pt;line-height:150%;"><span style="font-family:Times New Roman;">- Err.. nada.. quis dizer que você escolhe o filme.. e aí.. Harry Potter?</span></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[FA Community Shield 2008]]></title>
<link>http://manutdmaniacs.wordpress.com/?p=40</link>
<pubDate>Sat, 09 Aug 2008 18:29:19 +0000</pubDate>
<dc:creator>Varun</dc:creator>
<guid>http://manutdmaniacs.wordpress.com/?p=40</guid>
<description><![CDATA[Man Utd are back, so are the rest of the EPL teams, as season kicks off tomorrow with FA Community S]]></description>
<content:encoded><![CDATA[<p>Man Utd are back, so are the rest of the EPL teams, as season kicks off tomorrow with FA Community Shield, where EPL winner and FA Cup Winner play with nothing-to-loose attitude and its sort of a kick-starter for the English Fans.</p>
<p>This time is Manchester United and Portsmouth, for complete details, do visit this <a href="http://www.espnstar.com/football/news/detail/item100553/The-FA-Community-Shield:-Man-Utd-vs-Portsmouth" target="_blank">section on ESPNSTAR</a>.</p>
<p>English Premier League kicks off soon, get ready, book your days and be ready as this season is going to be really exciting one!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[FaMI-Portal]]></title>
<link>http://fobikom.wordpress.com/?p=392</link>
<pubDate>Sat, 09 Aug 2008 11:40:02 +0000</pubDate>
<dc:creator>ilonamunique</dc:creator>
<guid>http://fobikom.wordpress.com/?p=392</guid>
<description><![CDATA[Wer auch immer die &#8220;Assi&#8221;-Schublade offen hat, darf sich jetzt bitte doch ein wenig wund]]></description>
<content:encoded><![CDATA[<p>Wer auch immer die "Assi"-Schublade offen hat, darf sich jetzt bitte doch ein wenig wundern. In der Taggingwolke des <a title="http://www.fami-portal.de/index.php?page=Board&#38;boardID=64" href="http://www.fami-portal.de/index.php?page=Board&#38;boardID=64" target="_blank">FaMI-Portals im Forum Weiter- und Fortbildung</a> sticht ein Wort besonders hervor: <strong>Studien.</strong></p>
<p>Ausbildung, Fortbildung, Weiterbildung, Studium ... wie auch immer. Ich wünschte mir eine noch größere Durchlässigkeit in unserer bibliothekarischen Berufswelt für Menschen, die sich nicht so ohne weiteres einordnen lassen (wollen). Und die noch Ziele haben, ohne an ihren vergangenen Entscheidungen bzw. Möglichkeiten scheitern zu müssen.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Telecom fa i conti con il calo del Brasile Il titolo cede il 4%]]></title>
<link>http://compusicale.wordpress.com/?p=18</link>
<pubDate>Fri, 08 Aug 2008 20:40:31 +0000</pubDate>
<dc:creator>compusicale</dc:creator>
<guid>http://compusicale.wordpress.com/?p=18</guid>
<description><![CDATA[da MilanoEnnesima giornata difficile in Borsa per Telecom Italia che ieri ha perso il 3,6 per cento.]]></description>
<content:encoded><![CDATA[<p>da MilanoEnnesima giornata difficile in Borsa per Telecom Italia che ieri ha perso il 3,6 per cento. Da inizio anno il titolo della società telefonica ha praticamente dimezzato il valore in Borsa e ovviamente nel portafoglio degli azionisti, piccoli o grandi che siano. Il tracollo di ieri, alla vigilia dei risultati semestrali che saranno diffusi oggi, è dovuto a Tim Brasil.La controllata brasiliana, infatti, ha tagliato le previsioni di crescita sul 2008 sui ricavi dal 9 al 7% riducendo anche le stime sull’aumento degli utili portandole dal 23 al 22-22,5 per cento. Il gruppo sudamericano ha chiuso il secondo trimestre in rosso per 34,1 milioni di reais (quasi 14 milioni di euro). I ricavi sono cresciuti del 4,7% a 6,3 miliardi di reais (intorno a 260 milioni di euro) rispetto allo stesso periodo dell’anno scorso. Il rallentamento del Brasile, comunque, non è legato soltanto alla cattiva congiuntura economica e al rallentamento del settore tlc. Tim Brasil, infatti, sconta anche la politica commerciale molto aggressiva lanciata nel primo trimestre dell’anno dal direttore generale Francesco Locati che ieri ha dato le dimissioni insieme al direttore finanziario Gianandrea Castelli Rivolta. Quest’ultima posizione dovrebbe venire assunta da Claudio Zezza, che è già all’interno del gruppo Telecom, mentre l’amministratore delegato di Tim Brasil, Mario Cesar Pereira de Araujo, assumerà anche le funzioni di direttore generale. <br><br>Fonte: http://www.ilgiornale.it/a.pic1?ID=281776</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Still eating for England...]]></title>
<link>http://curvaceousgirl.wordpress.com/?p=5</link>
<pubDate>Tue, 05 Aug 2008 17:44:37 +0000</pubDate>
<dc:creator>curvaceousgirl</dc:creator>
<guid>http://curvaceousgirl.wordpress.com/?p=5</guid>
<description><![CDATA[I&#8217;m not seeing my Dr until Thursday, so I&#8217;m hanging in here a bit trying not to binge ea]]></description>
<content:encoded><![CDATA[<p>I'm not seeing my Dr until Thursday, so I'm hanging in here a bit trying not to binge eat.  It's got so bad that I don't even know when I'm hungry - all I know is that I eat.  Especially sweet stuff.  And I get into this spiral of hating myself then I eat some more and hate myself... blah blah blah.</p>
<p>Admitting it to my GP scares me.  It goes on my records, for a start.  Along with my depression and all the associated stuff.  And I am scared that she will judge me, as if anyone could judge me more harshly than I do myself!  There's a voice in my head telling me I'm greedy and disgusting, and it's not an eating disorder, I'm just a vile pig.  And so on.  And it's been there for years.</p>
<p>And I have to ask for help, which I find hard.  How do I explain in the allotted 5 minutes that I am out of control?  That it's no longer about the weight, I don't care what I fucking look like, I just want to feel comfortable in my own skin?  I want to feel safe around food, not want to eat everything that passes in front of my face.  That joke about 'I'm on a sea food diet - I see food and I eat it' hasn't been funny for a long time, because that's what my life is like.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Still eating for England...]]></title>
<link>http://curvaceousgirl.wordpress.com/?p=5</link>
<pubDate>Tue, 05 Aug 2008 17:44:37 +0000</pubDate>
<dc:creator>curvaceousgirl</dc:creator>
<guid>http://curvaceousgirl.wordpress.com/?p=5</guid>
<description><![CDATA[I&#8217;m not seeing my Dr until Thursday, so I&#8217;m hanging in here a bit trying not to binge ea]]></description>
<content:encoded><![CDATA[<p>I'm not seeing my Dr until Thursday, so I'm hanging in here a bit trying not to binge eat.  It's got so bad that I don't even know when I'm hungry - all I know is that I eat.  Especially sweet stuff.  And I get into this spiral of hating myself then I eat some more and hate myself... blah blah blah.</p>
<p>Admitting it to my GP scares me.  It goes on my records, for a start.  Along with my depression and all the associated stuff.  And I am scared that she will judge me, as if anyone could judge me more harshly than I do myself!  There's a voice in my head telling me I'm greedy and disgusting, and it's not an eating disorder, I'm just a vile pig.  And so on.  And it's been there for years.</p>
<p>And I have to ask for help, which I find hard.  How do I explain in the allotted 5 minutes that I am out of control?  That it's no longer about the weight, I don't care what I fucking look like, I just want to feel comfortable in my own skin?  I want to feel safe around food, not want to eat everything that passes in front of my face.  That joke about 'I'm on a sea food diet - I see food and I eat it' hasn't been funny for a long time, because that's what my life is like.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[PCA / FA Malinowski Summary]]></title>
<link>http://rip94550.wordpress.com/?p=246</link>
<pubDate>Tue, 05 Aug 2008 00:56:26 +0000</pubDate>
<dc:creator>rip</dc:creator>
<guid>http://rip94550.wordpress.com/?p=246</guid>
<description><![CDATA[Malinowski’s work is considerably different from everything else we&#8217;ve seen before.
First of]]></description>
<content:encoded><![CDATA[<p>Malinowski’s work is considerably different from everything else we've seen before.</p>
<p>First of all, he expects that in most cases one will neither standardize nor even center the data X. We can do his computations as an SVD of X, or an eigendecomposition of $latex X^{T}X$ or of $latex XX^T$ – but because the data isn't even centered, $latex X^{T}X$ and $latex XX^T$ are not remotely covariance matrices. For this reason, I assert that preprocessing is a separate issue. </p>
<p>Nevertheless, the underlying mathematics is the same: get either an SVD of X or an eigendecomposition of $latex X^{T}X$ and/or of $latex XX^T$. But what do we do to X first? That's a separate question.</p>
<p>Second, he is not primarily interested in eliminating "small" eigenvalues or singular values: he is interested in eliminating "experimental error", i.e. "noise". Although I worked thru his chapter 4 on estimating noise, I have not discussed it: his main interest is in deciding when x and $latex \hat{x}$ are "close enough", and without a real-world application, and without a more rigorous treatment, I’d rather pass for now. I’ll come back to his error stuff, however, if I ever find myself anywhere else looking at error estimation in PCA / FA.</p>
<p>In addition to omitting chapter 4, I stopped after chapter 5. What he has in common with Harman and Jolliffe is a lot of references to the literature. I didn't see anything after chapter 5 that I could confirm the computations of.</p>
<p>Third, he doesn't much use the usual vocabulary of scores and loadings, although he does use the subscript "load" for his $latex \hat{X}$ in contrast to the subscript "basic" for his matrix X of successful test vectors x. (I sometimes think that he uses subscripts for emphasis rather than to distinguish entities, but I’m probably exaggerating.) In any case, I decided that the customary vocabulary was secondary to the mathematics: find the eigenvector matrix or matrices.</p>
<p>Fourth, he has no graphical techniques; he provides none of the graphs we came to expect in Harman, Jolliffe, and Davis. Such graphs do, in fact, have a place in chemistry; the Brereton "Chemometrics" – which I have not yet discussed – has a few. We will not do much with it: their internet data is available only to owners of the book, so I can compute to my heart's content, but I can't very well publish the data and you can't very well follow along without it. But I will see if there's anything I need to say about it.</p>
<p>Fifth, his notion of target testing (including using it to fill in missing values) is a whole new world, a brave new world, and I like it. I think I did it more simply than he did, but I was just cleaning up the math. </p>
<p>I do wonder. Can target testing be used in PCA "rotations", i.e. change of basis? For handling multicollinearity in OLS? To tell us we should have centered the data? To tell us to subtract a constant? I don't know yet. I'll keep my eyes open.</p>
<p>I learned a lot from Malinowski about using the available tools. Davis taught me to use the SVD, Malinowski got me comfortable with using both the full and the cut-down SVDs. Not to mention using the u and v bases, and constructing the hat matrix.</p>
<p>OTOH, there is at least one thing we did along with Malinowski that the other authors did not do. They might have, but they did not: reconstitute the data matrix using the reduced set of eigenvalues or singular values. </p>
<p>The classical techniques generally just list the eigenvectors v1, possible weighted by the w0 (equivalently, by the square roots of the eigenvalues). But in principle, they could have computed D1. In practice, they usually got no closer than describing the new correlation matrix or variances.</p>
<p>When we start with the SVD</p>
<p>$latex D = u\ w\ v^T$</p>
<p>and replace the smallest singular value in w by 0 (and call the new matrix w0), we can reconstitute the data D as</p>
<p>$latex D1 = u\ w_0\ v^T$</p>
<p>("Reconstitute" is intended to convey that impression that D1 is not the real data, not fresh orange juice. )</p>
<p>I want to show you more detail of the difference between D and D1. I’ve been a little vague about it.</p>
<p>Recall example 5 with noise. Here’s the data matrix:</p>
<p>$latex D = \left(\begin{array}{lll} 1.9 &#38; 3.2 &#38; 3.9 \\ 1 &#38; -0.2 &#38; -1 \\ 4 &#38; 4.9 &#38; 6.1 \\ 3 &#38; 1.9 &#38; 1.1 \\ 6 &#38; 6.9 &#38; 7.9\end{array}\right)$</p>
<p>The singular values were $latex \{16.194,\ 2.41991,\ 0.238533\}$</p>
<p>We interpret 3 nonzero singular values to mean that the matrix D is technically of rank 3; we know we can go further, however, and say that D differs from a matrix of rank 2 by its smallest singular value, namely .238533.</p>
<p>(I could go so far as to say the matrix D is of rank 2.238533, but perhaps it's better to leave it at "differs from a matrix of rank 2 by .238533." After all, if the smallest singular value were 10, the matrix would differ from a matrix of rank 2 by 10, and I don't want to say that it's of rank 12 = 2+10.)</p>
<p>We replaced the smallest singular value (0.238533) by 0, and reconstituted the data, calling it D1.</p>
<p>$latex D1 = \left(\begin{array}{lll} 1.95859 &#38; 3.05258 &#38; 3.98415 \\ 0.992857 &#38; -0.182028 &#38; -1.01026 \\ 3.95401 &#38; 5.0157 &#38; 6.03396 \\ 3.02136 &#38; 1.84625 &#38; 1.13068 \\ 6.0016 &#38; 6.89597 &#38; 7.9023\end{array}\right)$</p>
<p>What is the difference between D and D1? D1 is of rank 2, and the difference is supposed to be 0.238533.</p>
<p>Just how do we compute that difference? That’s the question.</p>
<p>The appropriate "norm" – appropriate because it gives this answer – is called the Frobenius norm, and it's pretty simple: pretend the matrix is a vector, and compute its Euclidean norm (2-norm), namely the square root of the sum of squares.</p>
<p>Here we are. The element-by-element differences between D and D1 are:</p>
<p>$latex e1 = \left(\begin{array}{lll} -0.0585929 &#38; 0.147418 &#38; -0.0841454 \\ 0.00714334 &#38; -0.0179725 &#38; 0.0102586 \\ 0.0459858 &#38; -0.115699 &#38; 0.0660403 \\ -0.0213625 &#38; 0.0537476 &#38; -0.0306787 \\ -0.00160247 &#38; 0.00403179 &#38; -0.00230131\end{array}\right)$</p>
<p>Now take the square root of the sum of the squares of the "components".</p>
<p>In case you're working thru this with me, the squares of those numbers are</p>
<p>$latex \left(\begin{array}{lll} 0.00343313 &#38; 0.0217322 &#38; 0.00708044 \\ 0.0000510273 &#38; 0.000323011 &#38; 0.000105238 \\ 0.0021147 &#38; 0.0133863 &#38; 0.00436132 \\ 0.000456356 &#38; 0.00288881 &#38; 0.000941184 \\ 2.56792E^{-6} &#38; 0.0000162553 &#38; 5.29604E^{-6} \end{array}\right)$</p>
<p>and the sum of them is 0.0568979, and the square root of that is 0.238533.</p>
<p>That number should seem familiar: it's exactly the singular value that we set to zero; it's exactly what it ought to be.</p>
<p>By computing the difference e1, and then the square root of the sum of squares, I explicitly computed the difference D - D1 and confirmed that it was equal to the smallest singular value of D. In practice, of course, there is no need to compute the sum-of-squares, because we already know it.</p>
<p>I’ll close that by saying that if we set two singular values to zero, the difference between the original (D) and the reconstituted (D1) is the square root of the sum of squares of the two singular values. What’s going on is that the norm of D is the same as the norm of w, and the norm of D1 is the same as the norm of w0; so the difference between D and D1 is the difference between w and w0.</p>
<p>I think we're done here.</p>
<p>Oh, let me be clear. I’m glad I own Malinowski (ah, the book). If you're going to be doing PCA / FA in the physical sciences, you probably want it, too. If you're going to be doing PCA / FA in chemistry, don’t even think about not buying it. Just my opinion.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Newcastle United - a club with no morals?]]></title>
<link>http://dunbarjock.wordpress.com/?p=75</link>
<pubDate>Mon, 04 Aug 2008 02:52:50 +0000</pubDate>
<dc:creator>rdsutherland</dc:creator>
<guid>http://dunbarjock.wordpress.com/?p=75</guid>
<description><![CDATA[As teammates Lee Bowyer and Kieron Dyer furiously traded punches close to the halfway line in the cl]]></description>
<content:encoded><![CDATA[<p>As teammates Lee Bowyer and Kieron Dyer furiously traded punches close to the halfway line in the club's defeat to Aston Villa back in 2005, it was expected that at least one of the players would not wear the Newcastle shirt again. Bowyer, who was known for his previous violent antics (some away from the field) was considered to have been the protagonist, and as <a title="this" href="http://news.bbc.co.uk/sport2/hi/football/4405749.stm" target="_blank">this</a> article on the BBC's football website showed - many fans wanted the club to release the player.<img class="alignright" src="http://newsimg.bbc.co.uk/media/images/41126000/jpg/_41126056_dyer.jpg" alt="" width="250" height="180" /></p>
<p>When Bowyer subsequently returned to the side for their UEFA Cup fixtures following his suspension, it was just an example of Newcastle's lack of morals - at least at a managerial level - as has been a decision that has once again allowed the club to make the headlines for all the wrong reasons.</p>
<p>Joey Barton, released from prison just a week ago, has been welcomed back to the Newcastle United squad by manager Kevin Keegan.</p>
<p>Keegan claims that Barton's behaviour prior to his sentence was exemplary and that as such, he deserved a second chance.</p>
<p>"I told him that as long as he did things right while he was with us and started to rebuild the confidence of everyone around him – which he had to do – I would stick by him," the Newcastle Utd manager told <a title="Barton given another chance by Keegan" href="http://www.timesonline.co.uk/tol/sport/football/premier_league/newcastle/article4413216.ece" target="_blank">The Times</a> on Monday, " people have opinions and you’ve got to respect those, but mine is to give him another chance," he said.</p>
<p>This is the same Joey Barton who's second, third and fourth chance came at Manchester City, when - while on tour with the club in Thailand - Barton <a title="Barton attacks Everton fan" href="http://news.bbc.co.uk/sport2/hi/football/teams/m/man_city/4706625.stm" target="_blank">attacked a 15-year-old Everton fan.</a> This 'second chance' came after he had <a title="Barton stubbs out cigar on eye" href="http://www.manchestereveningnews.co.uk/sport/football/manchester_city/s/140/140969_barton_faces_fine_after_party_fracas.html" target="_blank">stubbed out a cigar in a team-mates eye</a> the previous year. And then of course there was his <a title="Ousmane Dabo attacked by Barton" href="http://www.telegraph.co.uk/sport/football/2318187/Police-charge-Joey-Barton-with-Dabo-assault.html" target="_blank">horrific attack on his Manchester City team mate Ousmane Dabo. </a></p>
<p>So while Kevin Keegan claims that he is giving Barton a second chance - it will in fact have been his fifth chance - although argueably his first chance at his new club.</p>
<p>Newcastle do have a long history in showing cowardice in the face of an opportunity to do the right thing. Duncan Ferguson's general aggression and his astounding ability to subtley elbow opposition players in the face - an action that resulted in Gregg Berhalter of Crystal Palace suffering a severely broken jaw - was often a point of blissful ignorance.</p>
<p>They also chose not to take action when their chairman, Fred Sheppherd, was secretly recorded making disparaging comments about Newcastle's women and the club's own fans.</p>
<p>Their decision not to take action following Bowyer's and Dyer's fracas in the middle of the St James' Park pitch showed a new level of toothless-ness - to then follow this up with a reluctance to serve Joey Barton with anything other than a warm, welcoming hug shows the club in perhaps the worst light yet.</p>
<p>Joey Barton will return to the club - earning a ridiculous wage every week - when what he really deserves is the opportunity never to play football again. The FA will ban him for 15 games - which is far off the full time ban that the player really deserves.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Tampere, se fosse come 24 anni fa...]]></title>
<link>http://datedea.wordpress.com/?p=9</link>
<pubDate>Sat, 02 Aug 2008 16:56:56 +0000</pubDate>
<dc:creator>datedea</dc:creator>
<guid>http://datedea.wordpress.com/?p=9</guid>
<description><![CDATA[Il Tampere United è una formazione giovane perché è nata dall’unione di due club finlandesi (Il]]></description>
<content:encoded><![CDATA[<p>Il Tampere United è una formazione giovane perché è nata dall’unione di due club finlandesi (Ilves e Tampere) nel 1998. Nonostante questo è riuscita a vincere tre scudetti (2001, 2006 e 2007, anno in cui ha vinto anche la coppa nazionale): nel campionato in corso, già 14 partite giocate, si trova al decimo posto della classifica. La Juventus ha un precedente con l’Ilves, risalente alla stagione 1984/85 in Coppa dei Campioni: vittoria 4-0 a Torino e 2-1 in Scandinavia (poi i bianconeri vinsero la coppa). Prima di trovare l’Artmedia, il Tampere ha trovato sulla sua strada europea i montenegrini del Budoçnost Podgorica (2-1 e 1-1).<br />
	 <br><br>Fonte: http://www.ilgiornale.it/a.pic1?ID=280423</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Davide Baiardo alle Olimpiadi di cent’anni fa]]></title>
<link>http://tiamotd.wordpress.com/?p=29</link>
<pubDate>Fri, 01 Aug 2008 20:28:27 +0000</pubDate>
<dc:creator>tiamotd</dc:creator>
<guid>http://tiamotd.wordpress.com/?p=29</guid>
<description><![CDATA[Ho sotto gli occhi il primo volume dell’Enciclopedia delle Olimpiadi da Olimpia a Pechino: 3000 an]]></description>
<content:encoded><![CDATA[<p>Ho sotto gli occhi il primo volume dell’Enciclopedia delle Olimpiadi da Olimpia a Pechino: 3000 anni di storia, redatto dalla Gazzetta dello Sport. Sfogliando il volume, arrivato a pagina 155, nell’elenco dei partecipanti italiani alle Olimpiadi di Londra del 1908, leggo, tra gli altri: «Nuoto: Baiardo Davide (100 sl e 400 sl)». Davide Baiardo era di Voltri. Nel 1907 entrò a fare parte della S.S. Nicola Mameli della Città di Voltri e l’anno dopo tutti gli atleti di questa società fecero una colletta per pagargli il viaggio fino a Londra per partecipare alle Olimpiadi. Così eccolo, Davide il voltrese, il 18 giugno 1908, alcuni giorni prima di scendere in acqua, invitato al banchetto dei più noti swimmer amateur internazionali che si tiene alla King’s Hall Holborn Restaurant. In quel mattino gli sarà presentato il grande Fred Lane, l’australiano che, giorni dopo, vincerà quasi tutte le medaglie del nuoto. Finita l’avventura, il ventenne campione, ritorna al suo lavoro presso le Ferriere di Voltri senza però smettere l’attività sportiva. Sì perché Baiardo praticava anche ginnastica, atletica e pallanuoto. Infatti, nel 1907 fa parte della squadra ginnica che vince a Piacenza, nel 1909 vince con la Mameli a Losanna. Passando all’atletica leggera: nel 1911 è campione ligure del salto in lungo, nel 1921 lo sarà nel lancio del disco. Nel 1912, in prestito dalla Mameli al Genoa, si laurea con questa ultima, campione italiano di pallanuoto. <br><br>Fonte: http://www.ilgiornale.it/a.pic1?ID=280276</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Messi e tante stelle: in Cina il calcio si fa largo]]></title>
<link>http://limeriella.wordpress.com/?p=21</link>
<pubDate>Fri, 01 Aug 2008 18:55:47 +0000</pubDate>
<dc:creator>limeriella</dc:creator>
<guid>http://limeriella.wordpress.com/?p=21</guid>
<description><![CDATA[L’unico modo per farsi largo è quello seguito dal basket: avanti con le stelle e gli altri stiano]]></description>
<content:encoded><![CDATA[<p>L’unico modo per farsi largo è quello seguito dal basket: avanti con le stelle e gli altri stiano a guardare. E così, in un universo (quello olimpico) che guarda al calcio con un briciolo di invidia e uno squarcio di superiority complex, il mondo del pallone ha deciso di calare gli assi: dentro Messi, Ronaldinho e un gruppetto di campioni e vediamo chi non se li godrà. Partenza il 7 agosto, in anticipo sulla cerimonia d’apertura. La sponsorizzazione Fifa concessa a Leo Messi e all’Argentina a far dispetto al Barcellona, che pur cercherà di bloccare tutto rivolgendosi al tribunale arbitrale sportivo, ha scatenato le fantasie. El Pulga è partito ieri per Pechino, accompagnato da componente dello staff tecnico del Barça, una sorta di guardia del corpo che vorrebbe rendere più soft la sconfitta politica e mettere in imbarazzo la Celeste. «Sopravviveremo anche senza Messi», ha invece concluso Pepp Guardiola, l’allenatore del Barcellona che non può fermarsi a piagnistei e rimpianti.Con Messi, l’Argentina cercherà di riconquistare il titolo vinto ad Atene 2004. Ed ha l’aria di potercela fare perchè le stelle saranno tante, i fuoriquota Mascherano e Riquelme, quel gruppetto di gioielli in età under: i centrocampisti Banega (Valencia) e Gago (Real Madrid), gli attaccanti Di Maria(Benfica) e il fortissimo Aguero (Atletico Madrid), Lavezzi, il puntero del Napoli, e Diego Buonanotte (River Plate). <br><br>Fonte: http://www.ilgiornale.it/a.pic1?ID=280183</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Davide Baiardo alle Olimpiadi di cent’anni fa]]></title>
<link>http://tribtreviso.wordpress.com/?p=18</link>
<pubDate>Fri, 01 Aug 2008 14:00:49 +0000</pubDate>
<dc:creator>tribtreviso</dc:creator>
<guid>http://tribtreviso.wordpress.com/?p=18</guid>
<description><![CDATA[Ho sotto gli occhi il primo volume dell’Enciclopedia delle Olimpiadi da Olimpia a Pechino: 3000 an]]></description>
<content:encoded><![CDATA[<p>Ho sotto gli occhi il primo volume dell’Enciclopedia delle Olimpiadi da Olimpia a Pechino: 3000 anni di storia, redatto dalla Gazzetta dello Sport. Sfogliando il volume, arrivato a pagina 155, nell’elenco dei partecipanti italiani alle Olimpiadi di Londra del 1908, leggo, tra gli altri: «Nuoto: Baiardo Davide (100 sl e 400 sl)». Davide Baiardo era di Voltri. Nel 1907 entrò a fare parte della S.S. Nicola Mameli della Città di Voltri e l’anno dopo tutti gli atleti di questa società fecero una colletta per pagargli il viaggio fino a Londra per partecipare alle Olimpiadi. Così eccolo, Davide il voltrese, il 18 giugno 1908, alcuni giorni prima di scendere in acqua, invitato al banchetto dei più noti swimmer amateur internazionali che si tiene alla King’s Hall Holborn Restaurant. In quel mattino gli sarà presentato il grande Fred Lane, l’australiano che, giorni dopo, vincerà quasi tutte le medaglie del nuoto. Finita l’avventura, il ventenne campione, ritorna al suo lavoro presso le Ferriere di Voltri senza però smettere l’attività sportiva. Sì perché Baiardo praticava anche ginnastica, atletica e pallanuoto. Infatti, nel 1907 fa parte della squadra ginnica che vince a Piacenza, nel 1909 vince con la Mameli a Losanna. Passando all’atletica leggera: nel 1911 è campione ligure del salto in lungo, nel 1921 lo sarà nel lancio del disco. Nel 1912, in prestito dalla Mameli al Genoa, si laurea con questa ultima, campione italiano di pallanuoto. <br><br>Fonte: http://www.ilgiornale.it/a.pic1?ID=280276</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[PCA / FA Malinowski Example 5: noise and both X and Y data]]></title>
<link>http://rip94550.wordpress.com/?p=202</link>
<pubDate>Thu, 31 Jul 2008 17:23:00 +0000</pubDate>
<dc:creator>rip</dc:creator>
<guid>http://rip94550.wordpress.com/?p=202</guid>
<description><![CDATA[I think I understand what Malinowski is talking about on p. 63. He has no example to illustrate it, ]]></description>
<content:encoded><![CDATA[<p>I think I understand what Malinowski is talking about on p. 63. He has no example to illustrate it, and I have to assume that he was a little sloppy: I must assume that the matrix T in eq. <span style="text-decoration:line-through;">1.136</span> 3.136 is different from the matrix T in eq. <span style="text-decoration:line-through;">1.134</span> 3.134. I don't like having to assume that, but the math makes sense this way. This is the best way I have found to reconcile his equations.</p>
<p>I had thought that eq. <span style="text-decoration:line-through;">1.136</span> 3.136 was a typo, but I no longer think so.</p>
<p>If what I’m about to do is what Malinowski was suggesting, then the credit is his; in any case, the mathematics looks good to me, and if it's not what he suggested, it is nevertheless my reaction to his work.</p>
<h2>the data and its SVD</h2>
<p>The cleanest way to make my case is to do a simulation. The following is the data from my example 5. It is of rank 2. In keeping with my latest notation, this is denoted by a "D", specifically D0 (rather than "X").</p>
<p>$latex D0 = \left(\begin{array}{lll} 2 &#38; 3 &#38; 4 \\ 1 &#38; 0 &#38; -1 \\ 4 &#38; 5 &#38; 6 \\ 3 &#38; 2 &#38; 1 \\ 6 &#38; 7 &#38; 8\end{array}\right)$</p>
<p>Let me add some noise to it.</p>
<p>Here's randomly generated and rounded noise...</p>
<p>$latex \left(\begin{array}{lll} -0.1 &#38; 0.2 &#38; -0.1 \\ 0 &#38; -0.2 &#38; 0 \\ 0 &#38; -0.1 &#38; 0.1 \\ 0 &#38; -0.1 &#38; 0.1 \\ 0 &#38; -0.1 &#38; -0.1\end{array}\right)$</p>
<p>which i add to D0 to get the final data matrix for this example.  In keeping with my latest notation, that data matrix will be called D.</p>
<p>$latex D = \left(\begin{array}{lll} 1.9 &#38; 3.2 &#38; 3.9 \\ 1 &#38; -0.2 &#38; -1 \\ 4 &#38; 4.9 &#38; 6.1 \\ 3 &#38; 1.9 &#38; 1.1 \\ 6 &#38; 6.9 &#38; 7.9\end{array}\right)$</p>
<p>That is what we know, not D0. We can talk about D0 because this is a simulation, but in practice D0 is unknowable: we are trying to estimate it.</p>
<p>Get the Singular Value Decomposition of D, $latex D = u\ w\ v^T\ $. Here's w:</p>
<p>$latex w = \left(\begin{array}{lll} 16.194 &#38; 0. &#38; 0. \\ 0. &#38; 2.41991 &#38; 0. \\ 0. &#38; 0. &#38; 0.238533 \\ 0. &#38; 0. &#38; 0. \\ 0. &#38; 0. &#38; 0.\end{array}\right)$</p>
<p>Set the 3rd singular value to zero. We are assuming that it is a measurement of the noise – which it is, by design. (There will still be some noise left over.)</p>
<p>We could write either</p>
<p>$latex w0 = \left(\begin{array}{lll} 16.194 &#38; 0 &#38; 0 \\ 0 &#38; 2.41991 &#38; 0 \\ 0 &#38; 0 &#38; 0 \\ 0 &#38; 0 &#38; 0 \\ 0 &#38; 0 &#38; 0\end{array}\right)$</p>
<p>or</p>
<p>$latex w1 = \left(\begin{array}{ll} 16.194 &#38; 0. \\ 0. &#38; 2.41991\end{array}\right)$</p>
<p>For w1, we need the cut-down u and v. Because w1 is 2x2, u1 is the first 2 columns of u, v1 is the first 2 columns of v. Then compute the "reconstituted data" $latex D1 = u1\ w1\ v1^T\ $, using the cut-down SVD. As usual, it is also true that $latex D1 = u\ w0\ v^T\ $, using the full SVD with only two singular values. Here is the reconstituted data D1:</p>
<p>$latex D1 = \left(\begin{array}{lll} 1.95859 &#38; 3.05258 &#38; 3.98415 \\ 0.992857 &#38; -0.182028 &#38; -1.01026 \\ 3.95401 &#38; 5.0157 &#38; 6.03396 \\ 3.02136 &#38; 1.84625 &#38; 1.13068 \\ 6.0016 &#38; 6.89597 &#38; 7.9023\end{array}\right)$</p>
<p>The difference between the data D and the reconstituted matrix is...</p>
<p>$latex D - D1 = \left(\begin{array}{lll} -0.0585929 &#38; 0.147418 &#38; -0.0841454 \\ 0.00714334 &#38; -0.0179725 &#38; 0.0102586 \\ 0.0459858 &#38; -0.115699 &#38; 0.0660403 \\ -0.0213625 &#38; 0.0537476 &#38; -0.0306787 \\ -0.00160247 &#38; 0.00403179 &#38; -0.00230131\end{array}\right)$</p>
<p>There is no way in the real world we would know the original matrix D0, but this is a simulation and here's the difference between D0 and D1:</p>
<p>$latex D0 - D1 = \left(\begin{array}{lll} 0.0414071 &#38; -0.0525815 &#38; 0.0158546 \\ 0.00714334 &#38; 0.182028 &#38; 0.0102586 \\ 0.0459858 &#38; -0.0156993 &#38; -0.0339597 \\ -0.0213625 &#38; 0.153748 &#38; -0.130679 \\ -0.00160247 &#38; 0.104032 &#38; 0.0976987\end{array}\right)$</p>
<p>The u and v computed from D (which has noise) are different from the u and v computed from D0 (which does not have noise); the two largest singular values (w1) are also different: I infer that we cannot eradicate the noise (D vs D0) just by eliminating the smallest singular value. If we could have, D1 would match D0.</p>
<p>In other words, the noise has caused D1 to differ from D0.</p>
<p>For reference, in case you are working along with me, here are the u and v matrices.</p>
<p>$latex u = \left(\begin{array}{lllll} -0.32924 &#38; -0.320222 &#38; -0.752815 &#38; -0.205034 &#38; -0.424605 \\ 0.0179826 &#38; 0.577752 &#38; 0.0917793 &#38; -0.775085 &#38; -0.238114 \\ -0.542068 &#38; -0.155692 &#38; 0.590837 &#38; 0.11501 &#38; -0.565338 \\ -0.201861 &#38; 0.731055 &#38; -0.27447 &#38; 0.56307 &#38; -0.180079 \\ -0.746118 &#38; 0.0705562 &#38; -0.0205889 &#38; -0.1641 &#38; 0.641075\end{array}\right)$</p>
<p>$latex v = \left(\begin{array}{lll} -0.485249 &#38; 0.811213 &#38; 0.326294 \\ -0.570892 &#38; -0.0112849 &#38; -0.820948 \\ -0.662281 &#38; -0.584642 &#38; 0.468591\end{array}\right)$</p>
<h2>the RC decomposition, and Xhat from X</h2>
<p>Moving on, do what we've done before: here's $latex R = u1\ w1$ and $latex C = v1^T\ $, so D1 = R C:</p>
<p>$latex R = \left(\begin{array}{ll} -5.33172 &#38; -0.774911 \\ 0.291211 &#38; 1.39811 \\ -8.77828 &#38; -0.37676 \\ -3.26895 &#38; 1.76909 \\ -12.0827 &#38; 0.17074\end{array}\right)$</p>
<p>$latex C = \left(\begin{array}{lll} -0.485249 &#38; -0.570892 &#38; -0.662281 \\ 0.811213 &#38; -0.0112849 &#38; -0.584642\end{array}\right)$</p>
<p>Now, we test the following two X vectors (i.e. two columns of this X matrix):</p>
<p>$latex X = \left(\begin{array}{ll} 1 &#38; 1 \\ 2 &#38; -1 \\ 3 &#38; 1 \\ 4 &#38; -1 \\ 5 &#38; 1\end{array}\right)$</p>
<p>You should assume that I tested thousands of other data records looking for likely candidates, and selected  these two based on the following calculations.</p>
<p>To get $latex \hat{X}$ I want the hat matrix, $latex H = u1\ u1^T\ $:</p>
<p>$latex H = \left(\begin{array}{lllll} 0.210941 &#38; -0.19093 &#38; 0.228326 &#38; -0.167639 &#38; 0.223058 \\ -0.19093 &#38; 0.334121 &#38; -0.099699 &#38; 0.418739 &#38; 0.0273469 \\ 0.228326 &#38; -0.099699 &#38; 0.318078 &#38; -0.0043966 &#38; 0.393462 \\ -0.167639 &#38; 0.418739 &#38; -0.0043966 &#38; 0.57519 &#38; 0.202193 \\ 0.223058 &#38; 0.0273469 &#38; 0.393462 &#38; 0.202193 &#38; 0.56167\end{array}\right)$</p>
<p>I compute the $latex \hat{X} = H X\ $ (As I said, in the real world this computation is what selected the columns of X; the computation preceded the construction of X.)</p>
<p>$latex \hat{X} = \left(\begin{array}{ll} 0.958792 &#38; 1.02089 \\ 1.98991 &#38; -1.01614 \\ 2.93289 &#38; 1.04396 \\ 3.96837 &#38; -0.963772 \\ 5.07526 &#38; 0.94865\end{array}\right)$</p>
<p>I compute the difference $latex \hat{X} - X\ $:</p>
<p>$latex \hat{X} - X = \left(\begin{array}{ll} -0.0412078 &#38; 0.0208948 \\ -0.0100941 &#38; -0.0161423 \\ -0.067115 &#38; 0.0439618 \\ -0.0316295 &#38; 0.0362281 \\ 0.0752581 &#38; -0.0513498\end{array}\right)$</p>
<p>OK, they will do: the differences are small. We would have done that calculation for thousands of candidates. Now get $latex T = w1^{-1}\ u1^T\ X$ for the two candidates we chose.</p>
<p>$latex T = \left(\begin{array}{ll} -0.398759 &#38; -0.0885231 \\ 1.50634 &#38; -0.708358\end{array}\right)$</p>
<p>As before, we can confirm that the product R T</p>
<p>$latex R\ T = \left(\begin{array}{ll} 0.958792 &#38; 1.02089 \\ 1.98991 &#38; -1.01614 \\ 2.93289 &#38; 1.04396 \\ 3.96837 &#38; -0.963772 \\ 5.07526 &#38; 0.94865\end{array}\right)$</p>
<p>is equal to $latex \hat{X}\ $.</p>
<h2>Yhat from Y</h2>
<p>Now, i'm going to change notation. Somebody has to do something! We write, as before</p>
<p>$latex D1 = R\ C = R\ T\ T^{-1}\ C = \hat{X}\ T^{-1}\ C\ $.</p>
<p>all i want to do is change is the name of $latex T^{-1}\ C\ $: call it $latex \hat{C}$ (instead of $latex \hat{Y}\ $). then we have</p>
<p>$latex D1 = \hat{X}\ \hat{C}\ $,</p>
<p>and $latex \hat{C}$ is</p>
<p>$latex \hat{C} = \left(\begin{array}{lll} 0.999354 &#38; 0.970148 &#38; 1.00377 \\ 0.979945 &#38; 2.07897 &#38; 2.95989\end{array}\right)$</p>
<p>Why change notation? Because i'm about to test some vectors y and construct an independent $latex \hat{Y}\ $. To put it another way, I desperately need something which is to Y as $latex \hat{X}$ is to X.</p>
<p>Duh, use $latex \hat{Y}\ $. (My first wish is that Malinowski had done this.)</p>
<p>Let $latex J = v1\ v1^T$ (This is the hat matrix for Y; it projects a vector onto the 2D space spanned by the columns of v1. It corresponds neatly to $latex H = u1\ u1^T\ $.)</p>
<p>$latex J = \left(\begin{array}{lll} 0.893533 &#38; 0.26787 &#38; -0.152898 \\ 0.26787 &#38; 0.326045 &#38; 0.384689 \\ -0.152898 &#38; 0.384689 &#38; 0.780423\end{array}\right)$</p>
<p>Let two test vectors y be :</p>
<p>$latex Y = \left(\begin{array}{lll} 2 &#38; 2 &#38; 2 \\ 0.5 &#38; 1. &#38; 1.5\end{array}\right)$</p>
<p>NOTE that my two vectors are the <span style="text-decoration:underline;">rows</span> of Y, whereas my x vectors were the <span style="text-decoration:underline;">columns</span> of X.</p>
<p>Instead of $latex \hat{X} = H\ X\ $, we have $latex \hat{Y} = Y\ J\ $ (because I put the vectors into the rows, and J is symmetric, J^T= J.) here is $latex \hat{Y}\ $:</p>
<p>$latex \hat{Y} = \left(\begin{array}{lll} 2.01701 &#38; 1.95721 &#38; 2.02443 \\ 0.485289 &#38; 1.03701 &#38; 1.47887\end{array}\right)$</p>
<p>and here is the difference between Y and  $latex \hat{Y}\ $:</p>
<p>$latex Y - \hat{Y} = \left(\begin{array}{lll} -0.0170087 &#38; 0.0427934 &#38; -0.0244262 \\ 0.014711 &#38; -0.0370126 &#38; 0.0211265\end{array}\right)$</p>
<p>They are very close to the Y, of course. Again, you should assume that i searched high and low and tested hundreds or thousands of potential y vectors before selecting these two; and the computations dictated the selection, in contrast to my selecting first and then computing.)</p>
<p>Let's look at it the other way: what are the new components of Y? Of Yhat? To get new components, we multiply each vector $latex y_i$ by the inverse (i.e. transpose) transition matrix, i.e. by $latex v^T\ $. But matrix Y has vectors $latex y_i$ in rows, so we combine the individual</p>
<p>$latex v_i^T\ $,</p>
<p>which makes sense for column vectors $latex y_i$ into</p>
<p>Y v</p>
<p>which makes sense for row vectors making up Y, and this gives us the new components in rows. And just as we used u instead of u1 for this, we use v instead of v1.</p>
<p>$latex Y\ v = \left(\begin{array}{lll} -3.43684 &#38; 0.430572 &#38; -0.0521269 \\ -1.80694 &#38; -0.482641 &#38; 0.0450852\end{array}\right)$</p>
<p>The 3rd components are nearly zero, as they should be: the vectors in Y are almost in the 2D subspace spanned by v1.</p>
<p>As further reassurance, we may compute the new components of the $latex \hat{Y}\ $:</p>
<p>$latex \hat{Y}\ v = \left(\begin{array}{lll} -3.43684 &#38; 0.430572 &#38; 0 \\ -1.80694 &#38; -0.482641 &#38; 0\end{array}\right)$</p>
<p>Yes: their 3rd components are 0.</p>
<p>We need the "T" matrix for these Yhat. FIrst, give it a new name, S. (That's the second thing I wish Malinowski had done, because I take it to be a different matrix.)</p>
<p>We have the hat matrix J</p>
<p>$latex J = v1\ v1^T$</p>
<p>and the projections $latex \hat{Y} = Y\ J$</p>
<p>and instead of $latex \hat{X} = R\ T\ $, we will write</p>
<p>$latex \hat{Y} = S\ C = S\ v1^T$</p>
<p>so</p>
<p>$latex S = \hat{Y}\ v1\ $.</p>
<p>i.e. we compute</p>
<p>$latex S = \hat{Y}\ v1\ = \left(\begin{array}{ll} -3.43684 &#38; 0.430572 \\ -1.80694 &#38; -0.482641\end{array}\right)$</p>
<p>I have checked that $latex \hat{Y} = S\ C\ $.</p>
<p>This time we write</p>
<p>$latex D1 = R\ C = R\ S^{-1}\ S\ C = R\ S^{-1}\ \hat{Y}$</p>
<p>(The second reason for using S instead of T is that reverse, inserting $latex S^{-1}\ S$ instead of $latex T\ T^{-1}\ $.)</p>
<p>And now we use $latex \hat{R}$ to denote $latex R\ S^{-1}\ $, getting</p>
<p>$latex D1 = \hat{R}\ \hat{Y}\ $,</p>
<p>with</p>
<p>$latex \hat{R} = \left(\begin{array}{ll} 0.481412 &#38; 2.03504 \\ 0.979059 &#38; -2.02336 \\ 1.45929 &#38; 2.08248 \\ 1.95929 &#38; -1.91752 \\ 2.51976 &#38; 1.89416\end{array}\right)$</p>
<p>Maybe i should point out that we inserted $latex T\ T^{-1}$ inside D1 = RC because $latex \hat{X} = R\ T\ $; we insert the reverse $latex S^{-1}\ S$ inside D1 = RC because $latex \hat{Y} = S\ C\ $.</p>
<h2>approximate products</h2>
<p>There is no doubt in my mind that Malinowski suggested replacing $latex \hat{X}$ by X in the equation</p>
<p>$latex D1 = \hat{X}\ \hat{C}\ $,</p>
<p>to get a different product which is approximately D or D1:</p>
<p>$latex D_X = X\ \hat{C}\ $.</p>
<p>I showed you that replacement in the previous post.</p>
<p>There is no doubt in my mind that it is equally valid to replace $latex \hat{Y}$ by Y in the equation</p>
<p>$latex D1 = \hat{R}\ \hat{Y}\ $,</p>
<p>to get a different product which is also approximately D or D1:</p>
<p>$latex D_Y = \hat{R}\ Y\ $.</p>
<p>Then, we could compare the original data matrix D with the two partially reconstructed data matrices $latex D_X$ and $latex D_Y\ $. Each of $latex D_X$ and $latex D_Y\ $ combines data (X and Y, respectively) with model ($latex \hat{C}$ and $latex \hat{R}\ $, respectively).</p>
<p>I have to say that malinowski does not describe the details of such a comparison between D and, say, $latex \hat{D}_X\ $.</p>
<p>The only doubt in my mind has nothing to do with my mathematics. What i did is valid, and plausible; but is it what he was recommending? I have to assume that his T in equation 3.133 in not the same T as in equation 3.136. To be specific, where he writes (3.132 and 3.133)</p>
<p>$latex X_{basic}\ \hat{Y}_{load} = \hat{D}\ \text{with } \hat{Y}_{load} = T^{-1}\ C$</p>
<p>I write instead</p>
<p>$latex X\ \hat{C} = \hat{D}_X \text{with } \hat{C} = T^{-1}\ C\ $.</p>
<p>All I did was change notation.</p>
<p>But where he writes (3.135 and 3.136)</p>
<p>$latex \hat{X}_{load}\ Y_{basic} = \hat{D}\ \text{with } \hat{X}_{load} = R\ T^{-1}\ \text{and with the same symbol } \hat{D}$</p>
<p>I write instead</p>
<p>$latex \hat{R}\ Y = \hat{D}_Y\ \text{with } \hat{R} = R\ S^{-1}\ $.</p>
<p>Not only is S not equal to T, but $latex \hat{D}_X \ne \hat{D}_Y\ $. They're close – that's the point of studying their deviations from D: they're both close to both D1 and D.</p>
<p>We could certainly have defined $latex \hat{X}_{load}= R\ T^{-1}\ $, but I can't see how we get anything useful from it. I have to believe that his T in the second pair of equations is a generic symbol, and that we really do have the two distinct computed matrices T and S.</p>
<p>Here are the two $latex \hat{D}$ matrices:</p>
<p>$latex \hat{D}_X = \left(\begin{array}{lll} 1.9793 &#38; 3.04912 &#38; 3.96366 \\ 1.01876 &#38; -0.138675 &#38; -0.952347 \\ 3.97801 &#38; 4.98942 &#38; 5.97121 \\ 3.01747 &#38; 1.80162 &#38; 1.0552 \\ 5.97671 &#38; 6.92971 &#38; 7.97875\end{array}\right)$</p>
<p>$latex \hat{D}_Y = \left(\begin{array}{lll} 1.98034 &#38; 2.99786 &#38; 4.01538 \\ 0.946439 &#38; -0.0652406 &#38; -1.07692 \\ 3.95983 &#38; 5.00107 &#38; 6.04231 \\ 2.95983 &#38; 2.00107 &#38; 1.04231 \\ 5.98661 &#38; 6.93369 &#38; 7.88077\end{array}\right)$</p>
<p>These are perfectly reasonable things to look at. X is close to $latex \hat{X}$ and Y is close to $latex \hat{Y}\ $; each of X, Y was chosen <span style="text-decoration:underline;">because</span> it was close. Replacing $latex \hat{X}$ by X and $latex \hat{Y}\ $ by Y is a reasonable way to study the goodness of the model.</p>
<p>We would compute and investigate the differences $latex D - \hat{D}_X$ and  $latex D - \hat{D}_Y\ $. Just to be clear, let me compute, instead, the difference between the two $latex \hat{D}$ matrices; they are not the same:</p>
<p>$latex \hat{D}_X - \hat{D}_Y = \left(\begin{array}{lll} -0.00104385 &#38; 0.0512587 &#38; -0.0517172 \\ 0.0723242 &#38; -0.0734349 &#38; 0.124573 \\ 0.0181767 &#38; -0.0116541 &#38; -0.0711045 \\ 0.0576412 &#38; -0.199449 &#38; 0.0128861 \\ -0.00989663 &#38; -0.00397833 &#38; 0.0979791\end{array}\right)$</p>
<h2>sometimes approximate products</h2>
<p>Finally, and this is what i think he meant by "the crown jewels of factor analysis" on p. 24, we could compute the product XY. We could also compute the product $latex \hat{X}\ \hat{Y}$ and the product $latex \hat{R}\ \hat{C}\ $. I remind you that when he writes $latex \hat{X}\ \hat{Y}$ on p. 64, he means what I've called $latex \hat{X}\ \hat{C}\ $. He has no symbol for the projection $latex \hat{Y}$ of his data $latex Y_{basic}\ $.</p>
<p>What do we know about those products? Well, XY should be close to $latex \hat{X}\ \hat{Y}\ $. But are they related to D or D1?</p>
<p>Well,</p>
<p>$latex \hat{X}\ \hat{Y} = R\ T\ S\ C$</p>
<p>so $latex \hat{X}\ \hat{Y}$ (and therefore XY) should be close to RC (hence close to D1 and D) if TS is the identity. By the same token,</p>
<p>$latex \hat{R}\ \hat{C} = R\ S^{-1}\ T^{-1}\ C = R\ {\left(TS\right)}^{-1}\ C$</p>
<p>so $latex \hat{R}\ \hat{C}\ $ should be close to RC if $latex {\left(TS\right)}^{-1}$ is close to the identity; that's equivalent to TS close to the identity.</p>
<p>It's time to write down all those products and relationships. We have the equalities</p>
<p>$latex D1 = R\ C = \hat{X}\ \hat{C} = \hat{R}\ \hat{Y}\ $;</p>
<p>and we have approximately</p>
<p>$latex \hat{X}\ \hat{C} \approx X\ \hat{C}$</p>
<p>$latex \hat{R}\ \hat{Y} \approx \hat{R}\ Y$</p>
<p>$latex D \approx D1$</p>
<p>so we could write</p>
<p>$latex D1 = R\ C = \hat{X}\ \hat{C} = \hat{R}\ \hat{Y}\  \approx X\ \hat{C} \approx \hat{R}\ Y\approx D\ $.</p>
<p>The other 3 products are</p>
<p>$latex X\ Y \approx \hat{X}\ \hat{Y}$</p>
<p>and</p>
<p>$latex \hat{R}\ \hat{C}\ $.</p>
<p>We have seen that all three of them will be close to D1 if TS is close to the identity. It's all or nothing for the three musketeers.</p>
<p>Well, let's just look at them. Here's XY...</p>
<p>$latex X\ Y = \left(\begin{array}{lll} 2.5 &#38; 3. &#38; 3.5 \\ 3.5 &#38; 3. &#38; 2.5 \\ 6.5 &#38; 7. &#38; 7.5 \\ 7.5 &#38; 7. &#38; 6.5 \\ 10.5 &#38; 11. &#38; 11.5\end{array}\right)$</p>
<p>and for comparison, we recall D...</p>
<p>$latex D = \left(\begin{array}{lll} 1.9 &#38; 3.2 &#38; 3.9 \\ 1 &#38; -0.2 &#38; -1 \\ 4 &#38; 4.9 &#38; 6.1 \\ 3 &#38; 1.9 &#38; 1.1 \\ 6 &#38; 6.9 &#38; 7.9\end{array}\right)$</p>
<p>They are not close. Just what is TS?</p>
<p>$latex T\ S = \left(\begin{array}{ll} 1.53043 &#38; -0.128969 \\ -3.89709 &#38; 0.99047\end{array}\right)$</p>
<p>Not close to the identity. $latex \hat{R}\ \hat{C}$ is no closer to D:</p>
<p>$latex \hat{R}\ \hat{C} = \left(\begin{array}{lll} 2.47532 &#38; 4.69783 &#38; 6.50672 \\ -1.00435 &#38; -3.25667 &#38; -5.00617 \\ 3.49907 &#38; 5.74515 &#38; 7.62871 \\ 0.0789657 &#38; -2.08566 &#38; -3.70896 \\ 4.37431 &#38; 6.38245 &#38; 8.13578\end{array}\right)$</p>
<p>Nor is XY:</p>
<p>$latex X\ Y= \left(\begin{array}{lll} 2.5 &#38; 3. &#38; 3.5 \\ 3.5 &#38; 3. &#38; 2.5 \\ 6.5 &#38; 7. &#38; 7.5 \\ 7.5 &#38; 7. &#38; 6.5 \\ 10.5 &#38; 11. &#38; 11.5\end{array}\right)$</p>
<p>Note that all of XY, $latex \hat{X}\ \hat{Y}\ $,$latex \hat{R}\ \hat{C}\ $ are quite different from each other, and quite different from D.</p>
<h2>winding down</h2>
<p>Please do not misunderstand me. $latex D_X = X\ \hat{C}\ $ and $latex D_Y = \hat{R}\ Y\ $ are always good things to look at. But XY, $latex \hat{X}\ \hat{Y}\ $, and $latex  \hat{R}\ \hat{C}$ need not be.</p>
<p>Please do not misunderstand me: <strong>they could be</strong>. If we had just used a different Y matrix, namely</p>
<p>$latex Y0 = \left(\begin{array}{lll} 1 &#38; 1 &#38; 1 \\ 1 &#38; 2 &#38; 3\end{array}\right)$</p>
<p>instead of</p>
<p>$latex Y = \left(\begin{array}{lll} 2 &#38; 2 &#38; 2 \\ 0.5 &#38; 1. &#38; 1.5\end{array}\right)$</p>
<p>then everything would have worked out fine. We would have found that ST was very nearly the identity, and that $latex D \approx X\ Y$ (hence also $latex D \approx \hat{X}\ \hat{Y}\ $, and $latex D \approx \hat{R}\ \hat{C}\ $).</p>
<p>But the proof of the pudding is the product TS, where T comes from the X data and S comes from the Y data, and if they mesh, then they mesh. That is, if TS = I, then they mesh.</p>
<p>I have deliberately computed a case where they did not mesh. I deliberately messed up the Y matrix. I hope to make this failure more memorable than the possibility that they could have meshed.</p>
<p>The key is that <span style="text-decoration:underline;">any</span> change of scale at all would have left me with a matrix Y which is <span style="text-decoration:underline;">still</span> close to its projection $latex \hat{Y}\ $. If any vector y is close to the 2D subspace, so is any multiple of it. Such closeness by itself only guarantees that XY is close to $latex \hat{X}\ \hat{Y}\ $, but it says nothing about ST close to the identity, hence it says nothing about XY being close to D.</p>
<p>Now, if there were an underlying chemical or physical model such that D ~ XY, and if we chose among such X and Y data, then we might more than hope – we might expect – that things would mesh. The challenge is to get X and Y that go together. In fact, one would hope that simply choosing consistent units would make them go together.</p>
<p>Nevertheless, I'd rather you took a deep sigh of relief if they meshed rather than expect it.</p>
<p>Finally, I really did have X and Y that would have made everything work out peachy. Instead, I scaled the rows of Y, and although I could still get perfectly reasonable independent projections $latex \hat{X}$ and $latex \hat{Y}\ $, they were just that: <span style="text-decoration:underline;">independent</span>.</p>
<p>As we wind down, I think you should asking: how did I know X and Y? Obviously they weren't real data.</p>
<p>For that matter, how did I construct D0, so precisely of rank 2? <span style="text-decoration:underline;">That's</span> the question. And the answer.</p>
<p>I started with a 5x2 ("column") matrix</p>
<p>$latex \left(\begin{array}{ll} 1 &#38; 1 \\ 2 &#38; -1 \\ 3 &#38; 1 \\ 4 &#38; -1 \\ 5 &#38; 1\end{array}\right)$</p>
<p>and a 2x3 ("row") matrix</p>
<p>$latex \left(\begin{array}{lll} 1 &#38; 1 &#38; 1 \\ 1 &#38; 2 &#38; 3\end{array}\right)$</p>
<p>and i multiplied them together to get D0.</p>
<p>$latex D0 = \left(\begin{array}{lll} 2 &#38; 3 &#38; 4 \\ 1 &#38; 0 &#38; -1 \\ 4 &#38; 5 &#38; 6 \\ 3 &#38; 2 &#38; 1 \\ 6 &#38; 7 &#38; 8\end{array}\right)$ = $latex \left(\begin{array}{ll} 1 &#38; 1 \\ 2 &#38; -1 \\ 3 &#38; 1 \\ 4 &#38; -1 \\ 5 &#38; 1\end{array}\right)$ $latex \left(\begin{array}{lll} 1 &#38; 1 &#38; 1 \\ 1 &#38; 2 &#38; 3\end{array}\right)$</p>
<p>Then later on I took that column matrix for X and a scaling of that row matrix for Y.</p>
<p>Please do not think that we could have reconstructed X and Y. We invented them! In the real world, they are data to be searched out. We can talk about them here because this is a simulation. Remember example 6, and the fact that our X matrix was made up of independent data for o-xylene and p-xylene. In that case, we would need independent data for Y.</p>
<p>If they do not mesh, and if you cannot rescale things or find other data that does mesh, maybe you settle for studying</p>
<p>$latex D \approx \hat{D}_X = X\ \hat{C}$</p>
<p>and</p>
<p>$latex D \approx \hat{D}_Y = \hat{R}\ Y\ $</p>
<p>Of course, if you have only X data, then you study only $latex D \approx \hat{D}_X = X\ \hat{C}\ $, and if you have only Y data, then you study only $latex D \approx \hat{D}_Y = \hat{R}\ Y\ $.</p>
<p>Next will be a "summary" of Malinowski, but in fact I expect that it will be more in the nature of "compare and contrast". Although this example has introduced Y data and its projection $latex \hat{Y}\ $, I hope it was also a good review and summary of what we've done with Malinowski.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Movida in centro l’inciviltà fa la differenza]]></title>
<link>http://finaltas.wordpress.com/?p=17</link>
<pubDate>Wed, 30 Jul 2008 09:46:35 +0000</pubDate>
<dc:creator>finaltas</dc:creator>
<guid>http://finaltas.wordpress.com/?p=17</guid>
<description><![CDATA[Si parla di movida, a Milano. E ci sarebbe da scusarsi con gli spagnoli per l’irrispettoso accosta]]></description>
<content:encoded><![CDATA[<p>Si parla di movida, a Milano. E ci sarebbe da scusarsi con gli spagnoli per l’irrispettoso accostamento. Ma a leggere le consuete cronache estive sul tema, c’è un equivoco. Grande e grosso. La Milano descritta dalle varie «rubriche del cittadino» divide i suoi abitanti tra giovani allegri e vecchi bacucchi, tra chi si vuole divertire e chi vuole dormire, tra simpatici giovialoni e spaccaballe intolleranti. Ma non è così. Non è questo il punto che rende la movida milanese tra le più becere d’Europa. La questione è un’altra e si chiama illegalità. O, meglio, inciviltà e mancanza totale di controlli in grado di educarla e, se il caso, di punirla, e severamente. Chi scrive abita in corso di Porta Ticinese. Ma il problema suo e della maggior parte dei residenti della zona non è il chiasso fino alle ore piccole. Non sono i ragazzi a zonzo, nemmeno i loro decibel. Il problema è quando il portone di casa diventa orinatoio pubblico. Quando i vetri delle bottiglie rotte, che un’ordinanza del Comune vieta di vendere, diventano il tappeto dei marciapiedi. O quando, tutte le sere, le macchine entrano nella zona pedonale percorrendo via Vetere e via Scaldasole in contromano, e si fermano sui marciapiedi. C’è forse qualcuno che si immagina di orinare a mezzanotte su un cancello del quartiere Latino di Parigi? O di inforcare il senso vietato di una traversa del Bleecker a New York? E, nel caso, pensa di farla franca? Allora basta con le polemiche su vecchi contro giovani. <br><br>Fonte: http://www.ilgiornale.it/a.pic1?ID=279697</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[I 5 livelli di abilità del Taijiquan stile Chen [6]]]></title>
<link>http://taijispot.wordpress.com/?p=123</link>
<pubDate>Tue, 29 Jul 2008 21:34:23 +0000</pubDate>
<dc:creator>taijispot</dc:creator>
<guid>http://taijispot.wordpress.com/?p=123</guid>
<description><![CDATA[Il 5° livello del Gong Fu
Questo livello di apprendimento del Taijiquan è quello riservato ai ver]]></description>
<content:encoded><![CDATA[<p><strong>Il 5° livello del Gong Fu</strong></p>
<p>Questo livello di apprendimento del Taijiquan è quello riservato ai veri esperti e a chi, nel proprio cammino di apprendimento, ha saputo scoprire e fare propri tutti gli insegnamenti ricevuti e gli allenamenti seguiti.</p>
<p>A questo livello di conoscenza, lo studio del "cerchio" da piccolo diventa "invisibile", cosicchè anche la forma deve essere eseguita in maniera invisibile mostrando così la profonda interiorizzazione del movimento.</p>
<p>Per fare questo il corpo deve essere estremamente flessibile, così come l'adattabilità ad ogni minimo cambiamento deve essere immediata e totale. La "mutazione" delle forze Yin e Yang deve quindi avvenire internamente, così da risultare invisibile fuori. Il tutto si traduce in estrema velocità e flessibilità, doti fondamentali e necessarie ad affrontare una combattimento vittorioso.</p>
<p>Il Qi scorre liberamente, comunicando con il cielo e la terra allo stesso modo (concetto evidentemente proprio della <a title="Wikipedia link Taijispot Taoismo" href="http://it.wikipedia.org/wiki/Taoismo" target="_blank">filosofia taoista</a>). L'artista marziale, a questo livello, in ogni momento della propria vita agisce in <a title="Taijispot wikipedia link cosmologia taoista" href="http://it.wikipedia.org/wiki/Cosmologia_taoista" target="_blank">equilibrio mutevole con il Taiji </a>(concetto sempre relativo alla filosofia taoista).</p>
<p>Vi è un perfetto equilibrio tra Yin e Yang. Il morbido e il duro si completano a vicenda, cosicchè i movimenti risultano sempre rilassati e vitali. Ogni parte del corpo è sensibile e può essere usata con la stessa potenza esplosiva (<a title="Taijispot link Wikipedia IT fa jing" href="http://it.wikipedia.org/wiki/Fa_jing" target="_blank">fa jing</a>) di un pugno.</p>
<p>Il rapporto stabilito con il proprio corpo e la propria mente, cosi come tra i muscoli e gli organi interni, è di perfetto equilibrio.</p>
<p>Il praticante ha raggiunto così il bilanciamento perfetto tra Yin e Yang (50% e 50%).</p>
<p style="text-align:left;"><em>Per le fonti originali di questo articolo vedi <a title="I CINQUE LIVELLI DI ABILITA' NEL TAIJIQUAN STILE CHEN Taijispot link" href="http://www.taijichen-italia.com/articoli/5.htm" target="_blank">I CINQUE LIVELLI DI ABILITA' NEL TAIJIQUAN STILE CHEN </a>di Gianna Sabatelli da "Arti d'Oriente" luglio-agosto 2002.</em></p>
]]></content:encoded>
</item>

</channel>
</rss>
