<?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>AiV3 on Altervista</title>
	<atom:link href="http://v3rgil.altervista.org/wordpress/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://v3rgil.altervista.org/wordpress</link>
	<description>“All in V3rgil”, “Tutto su Tutto”</description>
	<lastBuildDate>Mon, 23 Nov 2009 00:34:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>[MatLab] Metodo di Jacobi</title>
		<link>http://v3rgil.altervista.org/wordpress/?p=636</link>
		<comments>http://v3rgil.altervista.org/wordpress/?p=636#comments</comments>
		<pubDate>Mon, 23 Nov 2009 00:34:48 +0000</pubDate>
		<dc:creator>V3rgil</dc:creator>
				<category><![CDATA[MatLab]]></category>
		<category><![CDATA[Programmazione]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://v3rgil.altervista.org/wordpress/?p=636</guid>
		<description><![CDATA[Descrizione
L’algoritmo in questione risolve un sistema a matrice dei coefficienti quadrata non singolare tramite il metodo di Jacobi.
Codice
function [x, delta] = jacobi(n, A, b, toll, kmax, x)
delta=1;
if(det(A)==0)
return
else 
z=x;
for k=1:kmax
y=z(1,1);
som=0;
for i=2:n
som=som+A(1,i)*x(1,i);
end
z(1,1)=(b(1,1)-som)/A(1,1)
ermax=abs(y-z(1,1));
for i=2:n
y=z(1,i);
som=0;
for j=1:(i-1)
som=som+A(i,j)*x(1,j);
end
som1=0;
for j=(i+1):n
som1=som1+A(i,j)*x(1,j);
 end 
z(1,i)=(b(i,1)-som-som1)/A(i,i)
er=abs(y-z(1,i));
if ermax&#60;er
ermax=er;
end
end 
x=z;
if ermax&#60;toll*norm(z,inf)
delta=0;
return
end
end
end

]]></description>
			<content:encoded><![CDATA[<p><strong>Descrizione</strong><br />
L’algoritmo in questione risolve un sistema a matrice dei coefficienti quadrata non singolare tramite il <a href="http://it.wikipedia.org/wiki/Metodo_di_Jacobi">metodo di Jacobi</a>.</p>
<blockquote><p><strong>Codice</strong><br />
<span style="color: #000080;">function</span> [x, delta] = jacobi(n, A, b, toll, kmax, x)<br />
delta=1;<br />
<span style="color: #000080;">if</span>(det(A)==0)<br />
<span style="color: #000080;">return<br />
else </span><br />
z=x;<br />
<span style="color: #000080;">for</span> k=1:kmax<br />
y=z(1,1);<br />
som=0;<br />
<span style="color: #000080;">for</span> i=2:n<br />
som=som+A(1,i)*x(1,i);<br />
<span style="color: #000080;">end</span><br />
z(1,1)=(b(1,1)-som)/A(1,1)<br />
ermax=abs(y-z(1,1));<br />
<span style="color: #000080;">for</span> i=2:n<br />
y=z(1,i);<br />
som=0;<br />
<span style="color: #000080;">for</span> j=1:(i-1)<br />
som=som+A(i,j)*x(1,j);<br />
<span style="color: #000080;">end</span><br />
som1=0;<br />
<span style="color: #000080;">for</span> j=(i+1):n<br />
som1=som1+A(i,j)*x(1,j);<br />
<span style="color: #000080;"> end </span><br />
z(1,i)=(b(i,1)-som-som1)/A(i,i)<br />
er=abs(y-z(1,i));<br />
<span style="color: #000080;">if</span> ermax&lt;er<br />
ermax=er;<br />
<span style="color: #000080;">end<br />
end </span><br />
x=z;<br />
<span style="color: #000080;">if</span> ermax&lt;toll*norm(z,inf)<br />
delta=0;<br />
<span style="color: #000080;">return<br />
end<br />
end<br />
end</span></p></blockquote>
<p><img id="myFxSearchImg" style="border: medium none; position: absolute; z-index: 2147483647; opacity: 0.6; display: none;" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAADsElEQVR4nK2VTW9VVRSGn33OPgWpYLARbKWhQlCHTogoSkjEkQwclEQcNJEwlfgD/AM6NBo1xjhx5LyJ0cYEDHGkJqhtBGKUpm3SFii3vb2956wPB/t+9raEgSs52fuus89613rftdcNH8/c9q9++oe/Vzb5P+3McyNcfm2CcPj9af9w6gwjTwzvethx3Bx3x8xwd1wNM8dMcTNUHTfFLPnX6nVmZpeIYwf3cWD/PhbrvlPkblAzVFurKS6GmmGqqComaS+qmBoTI0Ncu3mXuGvWnrJ+ZSxweDgnkHf8ndVTdbiT3M7cQp2Z31dRTecHAfqydp4ejhwazh6Zezfnu98E1WIQwB3crEuJ2Y45PBTAQUVR9X4At66AppoEVO1Q8sgAOKJJjw6Am6OquDmvHskZ3R87gW+vlHz98zpmiqphkkRVbQtsfPTOC30lJKFbFTgp83bWh7Zx/uX1B6w3hI3NkkZTqEpBRDBRzG2AQHcwcYwEkOGkTERREbLQ/8HxJwuW7zdYrzfZ2iopy4qqEspKaDYravVm33k1R91Q69FA1VBRzFIVvXbx5AgXT44A8MWP81yfu0utIR2aVK3vfCnGrcUNxp8a7gKYKiLCvY2SUvo/aNtnM3e49ucK9S3p0aDdaT0UAVsKi2tVi6IWwNL9JvdqTdihaz79/l+u/rHMxmaJVMLkS2OoKKLWacdeE3IsSxctc2D5Qcl6vUlVVgNt+fkPPcFFmTw1xruvT7SCd7nuVhDQvECzJH90h0azRKoKFRkAmP5lKTWAGRdefoZL554FQNUxB92WvYeA5UN4PtSqwB2phKqsqMpBgAunRhFR3j49zuU3jnX8k6fHEQKXzh1jbmGDuYU6s4t1rt6socUeLLZHhYO2AHSHmzt19ihTZ48O8Hzl/AmunD/BjTvrvPfNX3hWsNpwJCvwYm+ngug4UilSCSq6k8YPtxDwfA+WRawIWFbgscDiULcCEaWqBFOlrLazurupOSHLqGnEKJAY8TwBEHumqUirAjNm52vEPPRV4p01XXMPAQhUBjcWm9QZwijwokgAeYHlHYA06KR1cT6ZvoV56pDUJQEjw0KeaMgj1hPEY4vz2A4eW0/e1qA7KtQdsxTYAG0H3iG4xyK1Y+xm7XmEPOJZDiENzLi2WZHngeOjj2Pe+sMg4GRYyLAsx7ME4FnsyTD9pr0PEc8zPGRAwKXBkYOPEd96cZRvf11g9MDe7e3R4Z4Q+vyEnn3P4t0XzK/W+ODN5/kPfRLewAJVEQ0AAAAASUVORK5CYII%3D" alt="" width="24" height="24" /></p>
]]></content:encoded>
			<wfw:commentRss>http://v3rgil.altervista.org/wordpress/?feed=rss2&amp;p=636</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[News] Wordpress 2.8.6</title>
		<link>http://v3rgil.altervista.org/wordpress/?p=634</link>
		<comments>http://v3rgil.altervista.org/wordpress/?p=634#comments</comments>
		<pubDate>Mon, 16 Nov 2009 00:52:37 +0000</pubDate>
		<dc:creator>V3rgil</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://v3rgil.altervista.org/wordpress/?p=634</guid>
		<description><![CDATA[Wordpress è stato aggiornato alla versione 2.8.6!
]]></description>
			<content:encoded><![CDATA[<p><strong>Wordpress </strong>è stato aggiornato alla versione <strong>2.8</strong>.<strong>6</strong>!</p>
]]></content:encoded>
			<wfw:commentRss>http://v3rgil.altervista.org/wordpress/?feed=rss2&amp;p=634</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[MatLab] Metodo di Gauss-Seidel</title>
		<link>http://v3rgil.altervista.org/wordpress/?p=631</link>
		<comments>http://v3rgil.altervista.org/wordpress/?p=631#comments</comments>
		<pubDate>Sun, 08 Nov 2009 23:01:41 +0000</pubDate>
		<dc:creator>V3rgil</dc:creator>
				<category><![CDATA[MatLab]]></category>
		<category><![CDATA[Programmazione]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://v3rgil.altervista.org/wordpress/?p=631</guid>
		<description><![CDATA[Descrizione
L&#8217;algoritmo in questione risolve un sistema a matrice dei coefficienti quadrata non singolare tramite il metodo di Gauss-Seidel.
Codice
function [x, delta] = GaussSeidel(n, A, b, toll, kmax, x)
delta=1;
if(det(A)==0)
return
else
for k=1:kmax
y=x(1,1);
som=0;
for i=2:n
som=som+A(1,i)*x(1,i);
end 
x(1,1)=(b(1,1)-som)/A(1,1)
ermax=abs(y-x(1,1));
for i=2:n
y=x(1,i);
som=0;
for j=1:(i-1)
som=som+A(i,j)*x(1,j);
end 
som1=0;
for j=(i+1):n
som1=som1+A(i,j)*x(1,j);
end 
x(1,i)=(b(i,1)-som-som1)/A(i,i)
er=abs(y-x(1,i));
if ermax&#60;er
ermax=er;
end
end
if ermax&#60;toll*norm(x,inf)
delta=0;
return
end
end
end
]]></description>
			<content:encoded><![CDATA[<p><strong>Descrizione</strong><br />
L&#8217;algoritmo in questione risolve un sistema a matrice dei coefficienti quadrata non singolare tramite il <a href="http://it.wikipedia.org/wiki/Metodo_di_Gauss-Seidel">metodo di Gauss-Seidel</a>.</p>
<blockquote><p><strong>Codice</strong><br />
<span style="color: #0000ff;">function </span>[x, delta] = GaussSeidel(n, A, b, toll, kmax, x)<br />
delta=1;<br />
<span style="color: #0000ff;">if</span>(det(A)==0)<br />
<span style="color: #0000ff;">return<br />
else<br />
for</span> k=1:kmax<br />
y=x(1,1);<br />
som=0;<br />
<span style="color: #0000ff;">for </span>i=2:n<br />
som=som+A(1,i)*x(1,i);<br />
<span style="color: #0000ff;">end </span><br />
x(1,1)=(b(1,1)-som)/A(1,1)<br />
ermax=abs(y-x(1,1));<br />
<span style="color: #0000ff;">for </span>i=2:n<br />
y=x(1,i);<br />
som=0;<br />
<span style="color: #0000ff;">for </span>j=1:(i-1)<br />
som=som+A(i,j)*x(1,j);<br />
<span style="color: #0000ff;">end </span><br />
som1=0;<br />
<span style="color: #0000ff;">for </span>j=(i+1):n<br />
som1=som1+A(i,j)*x(1,j);<br />
<span style="color: #0000ff;">end </span><br />
x(1,i)=(b(i,1)-som-som1)/A(i,i)<br />
er=abs(y-x(1,i));<br />
<span style="color: #0000ff;">if </span>ermax&lt;er<br />
ermax=er;<br />
<span style="color: #0000ff;">end<br />
end<br />
if </span>ermax&lt;toll*norm(x,inf)<br />
delta=0;<br />
<span style="color: #0000ff;">return<br />
end<br />
end<br />
end</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://v3rgil.altervista.org/wordpress/?feed=rss2&amp;p=631</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[MatLab] Fattoriale</title>
		<link>http://v3rgil.altervista.org/wordpress/?p=628</link>
		<comments>http://v3rgil.altervista.org/wordpress/?p=628#comments</comments>
		<pubDate>Sun, 01 Nov 2009 23:54:40 +0000</pubDate>
		<dc:creator>V3rgil</dc:creator>
				<category><![CDATA[MatLab]]></category>
		<category><![CDATA[Programmazione]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://v3rgil.altervista.org/wordpress/?p=628</guid>
		<description><![CDATA[Descrizione
Funzione la quale dato un intero strettamente positivo restituisce il suo fattoriale, altrimenti restituisce il valore 1.
Codice
function y = fattoriale(x)
y=1;
if x &#62; 0
y= x*fattoriale(x-1);
end;
]]></description>
			<content:encoded><![CDATA[<p><strong>Descrizione</strong><br />
Funzione la quale dato un intero strettamente positivo restituisce il suo fattoriale, altrimenti restituisce il valore 1.</p>
<blockquote><p><strong>Codice</strong><br />
<span style="color: #0000ff;">function </span>y = fattoriale(x)<br />
y=1;<br />
<span style="color: #0000ff;">if</span> x &gt; 0<br />
y= x*fattoriale(x-1);<br />
<span style="color: #0000ff;">end</span>;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://v3rgil.altervista.org/wordpress/?feed=rss2&amp;p=628</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Indovinelli/Logica] Partire in quarta!</title>
		<link>http://v3rgil.altervista.org/wordpress/?p=620</link>
		<comments>http://v3rgil.altervista.org/wordpress/?p=620#comments</comments>
		<pubDate>Fri, 30 Oct 2009 21:32:25 +0000</pubDate>
		<dc:creator>J</dc:creator>
				<category><![CDATA[Indovinelli]]></category>
		<category><![CDATA[Logica]]></category>

		<guid isPermaLink="false">http://v3rgil.altervista.org/wordpress/?p=620</guid>
		<description><![CDATA[Traccia
Il professor Archimede deve tenere quattro conferenze a cadenza settimanale. Se la prima si svolgerà il 1° ottobre, in quale giorno si svolgerà la quarta?
Soluzione
Le conferenze sono quattro, ma gli intervalli di tempo che intercorrono tra una e l&#8217;altra sono solo tre. Quindi la quarta conferenza si terrà tre settimane dopo la prima, ovvero:
il 22 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Traccia</strong><br />
Il professor Archimede deve tenere quattro conferenze a cadenza settimanale. Se la prima si svolgerà il 1° ottobre, in quale giorno si svolgerà la quarta?</p>
<p><strong>Soluzione</strong><br />
Le conferenze sono quattro, ma gli intervalli di tempo che intercorrono tra una e l&#8217;altra sono solo tre. Quindi la quarta conferenza si terrà tre settimane dopo la prima, ovvero:</p>
<p>il 22 ottobre</p>
<p style="text-align: right"><a href="mailto:giulio.palma@hotmail.it">Giulio</a><br />
da un libro di Ennio Peres</p>
]]></content:encoded>
			<wfw:commentRss>http://v3rgil.altervista.org/wordpress/?feed=rss2&amp;p=620</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Indovinelli/Matematica] Dosi da Cavallo!</title>
		<link>http://v3rgil.altervista.org/wordpress/?p=616</link>
		<comments>http://v3rgil.altervista.org/wordpress/?p=616#comments</comments>
		<pubDate>Fri, 30 Oct 2009 21:20:07 +0000</pubDate>
		<dc:creator>J</dc:creator>
				<category><![CDATA[Indovinelli]]></category>
		<category><![CDATA[Matematica]]></category>

		<guid isPermaLink="false">http://v3rgil.altervista.org/wordpress/?p=616</guid>
		<description><![CDATA[Traccia
Se in un minuto e mezzo, un cavallo e mezzo mangiano una fascina e mezza di biada, quanti cavalli occorrono per mangiare 60 fascine di biada in 30 minuti?
NB. l&#8217;espressione &#8220;un cavallo e mezzo&#8221; va intesa in termini matematici.
Soluzione
Il tempo impiegato da un singolo cavallo per mangiare una fascina di biada non cambia al variare [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Traccia</strong><br />
Se in un minuto e mezzo, un cavallo e mezzo mangiano una fascina e mezza di biada, quanti cavalli occorrono per mangiare 60 fascine di biada in 30 minuti?<br />
NB. l&#8217;espressione &#8220;un cavallo e mezzo&#8221; va intesa in termini matematici.</p>
<p><strong>Soluzione</strong><br />
Il tempo impiegato da un singolo cavallo per mangiare una fascina di biada non cambia al variare della quantità di cavalli. Di conseguenza, se 1,5 cavalli mangiano 1,5 fascine di biada in 1,5 minuti, vuol dire che nello stesso periodo di tempo, N cavalli mangiano N fascine di biada.  In particolare un solo cavallo mangia una sola fascina di biada in 1,5 minuti. Quindi il numero di fascine di biada che un cavallo riesce a mangiare da solo in 30 minuti è  uguale a</p>
<p>30/1,5=20</p>
<p>ciò significa che , per mangiarne 60 (il triplo) nello stesso tempo, occorrono 3 cavalli.</p>
<p style="text-align: right"><a href="mailto:giulio.palma@hotmail.it">Giulio</a><br />
da un libro di Ennio Peres</p>
]]></content:encoded>
			<wfw:commentRss>http://v3rgil.altervista.org/wordpress/?feed=rss2&amp;p=616</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[News] Wordpress 2.8.5</title>
		<link>http://v3rgil.altervista.org/wordpress/?p=613</link>
		<comments>http://v3rgil.altervista.org/wordpress/?p=613#comments</comments>
		<pubDate>Sun, 25 Oct 2009 23:03:14 +0000</pubDate>
		<dc:creator>V3rgil</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://v3rgil.altervista.org/wordpress/?p=613</guid>
		<description><![CDATA[Wordpress è stato aggiornato alla versione 2.8.5!
]]></description>
			<content:encoded><![CDATA[<p><strong>Wordpress </strong>è stato aggiornato alla versione <strong>2.8</strong>.<strong>5</strong>!</p>
]]></content:encoded>
			<wfw:commentRss>http://v3rgil.altervista.org/wordpress/?feed=rss2&amp;p=613</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[MatLab] Rapporto incrementale</title>
		<link>http://v3rgil.altervista.org/wordpress/?p=609</link>
		<comments>http://v3rgil.altervista.org/wordpress/?p=609#comments</comments>
		<pubDate>Sun, 18 Oct 2009 22:48:05 +0000</pubDate>
		<dc:creator>V3rgil</dc:creator>
				<category><![CDATA[MatLab]]></category>
		<category><![CDATA[Programmazione]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://v3rgil.altervista.org/wordpress/?p=609</guid>
		<description><![CDATA[Descrizione
Funzione per il calcolo del rapporto incrementale di una data funzione relativo ad un dato incremento in un determinato punto.
Codice
function [fprimo] = derivata(f,x0,toll)
x=x0+toll;
a=feval(inline(f),x);
b=feval(inline(f),x0);
fprimo=(a-b)/toll;
]]></description>
			<content:encoded><![CDATA[<p><strong>Descrizione</strong><br />
Funzione per il calcolo del rapporto incrementale di una data funzione relativo ad un dato incremento in un determinato punto.</p>
<blockquote><p><strong>Codice</strong><br />
<span style="color: #000080;">function </span>[fprimo] = derivata(f,x0,toll)<br />
x=x0+toll;<br />
a=feval(inline(f),x);<br />
b=feval(inline(f),x0);<br />
fprimo=(a-b)/toll;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://v3rgil.altervista.org/wordpress/?feed=rss2&amp;p=609</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[MatLab] Algoritmo di bisezione</title>
		<link>http://v3rgil.altervista.org/wordpress/?p=604</link>
		<comments>http://v3rgil.altervista.org/wordpress/?p=604#comments</comments>
		<pubDate>Sun, 11 Oct 2009 22:01:15 +0000</pubDate>
		<dc:creator>V3rgil</dc:creator>
				<category><![CDATA[MatLab]]></category>
		<category><![CDATA[Programmazione]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://v3rgil.altervista.org/wordpress/?p=604</guid>
		<description><![CDATA[Descrizione
Function che utilizza l&#8217;algoritmo di bisezione per calcolare un&#8217;approssimazione (in base ad una data tolleranza relativa) di uno &#8220;zero&#8221; di una funzione in un dato intervallo.
Codice
function [x, delta]=bisezione(a0,b0,f,toll)
x=0; delta = 0;
fa=feval(inline(f),a0);
fb=feval(inline(f),b0);
if fa*fb&#62;0
disp(&#8216;La funzione deve soddisfare f(a)f(b)&#60;0!&#8217;)
delta=1;
end
m=0;
while (abs(b0-a0)&#62;2*toll*abs(m) &#38; delta==0), % toll è la tolleranza relativa
m=(a0+b0)/2;
fc=feval(inline(f),m);
if fb*fc&#60;0
a0=m;
elseif fc==0
break
else
b0=m;
end
end
x=m;
]]></description>
			<content:encoded><![CDATA[<p><strong>Descrizione</strong><br />
Function che utilizza l&#8217;algoritmo di bisezione per calcolare un&#8217;approssimazione (in base ad una data tolleranza relativa) di uno &#8220;zero&#8221; di una funzione in un dato intervallo.</p>
<blockquote><p><strong>Codice</strong><br />
<span style="color: #0000ff;">function</span> [x, delta]=bisezione(a0,b0,f,toll)<br />
x=0; delta = 0;<br />
fa=feval(inline(f),a0);<br />
fb=feval(inline(f),b0);<br />
<span style="color: #0000ff;">if </span>fa*fb&gt;0<br />
disp(<span style="color: #800080;">&#8216;La funzione deve soddisfare f(a)f(b)&lt;0!&#8217;</span>)<br />
delta=1;<br />
<span style="color: #0000ff;">end</span><br />
m=0;<br />
<span style="color: #0000ff;">while </span>(abs(b0-a0)&gt;2*toll*abs(m) <strong><span style="color: #808000;">&amp;</span></strong> delta==0), <span style="color: #008000;">% toll è la tolleranza relativa</span><br />
m=(a0+b0)/2;<br />
fc=feval(inline(f),m);<br />
<span style="color: #0000ff;">if</span> fb*fc&lt;0<br />
a0=m;<br />
<span style="color: #0000ff;">elseif</span> fc==0<br />
<span style="color: #0000ff;">break<br />
else</span><br />
b0=m;<br />
<span style="color: #0000ff;">end<br />
end</span><br />
x=m;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://v3rgil.altervista.org/wordpress/?feed=rss2&amp;p=604</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Esercizi/Fisica] (4) Esercizio di fisica</title>
		<link>http://v3rgil.altervista.org/wordpress/?p=598</link>
		<comments>http://v3rgil.altervista.org/wordpress/?p=598#comments</comments>
		<pubDate>Sun, 04 Oct 2009 22:39:16 +0000</pubDate>
		<dc:creator>V3rgil</dc:creator>
				<category><![CDATA[Esercizi]]></category>
		<category><![CDATA[Fisica]]></category>

		<guid isPermaLink="false">http://v3rgil.altervista.org/wordpress/?p=598</guid>
		<description><![CDATA[Esercizio
Un giocatore di baseball blocca con il guanto una palla lanciata dal battitore, di massa m=200 g, che si muove lungo una traiettoria orizzontale (asse x) con velocità v=10 m/s. La palla si blocca nel tempo di 0.02 s. Calcolare: a) il valore della forza media sulla mano del giocatore. Ipotizzando che durante tale processo [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Esercizio</strong><br />
Un giocatore di baseball blocca con il guanto una palla lanciata dal battitore, di massa <em>m=200 g</em>, che si muove lungo una traiettoria orizzontale (asse x) con velocità <em>v=10 m/s</em>. La palla si blocca nel tempo di <em>0.02 s</em>. Calcolare: a) il valore della forza media sulla mano del giocatore. Ipotizzando che durante tale processo il giocatore eserciti una forza sulla palla funzione lineare del tempo, calcolare: b) lo spostamento della mano del giocatore per effetto del rinculo, c) il valore finale della forza esercitata dalla palla sulla mano del giocatore.</p>
<p><strong>Soluzione<br />
a)</strong> <em>100 N</em><strong>; b)</strong> <em>13.3 cm<strong>;</strong> </em><strong>c)</strong> <em>200 N<strong>.</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://v3rgil.altervista.org/wordpress/?feed=rss2&amp;p=598</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
