2020-03-09 23:18:13 +00:00
|
|
|
import {Component} from 'preact'
|
2020-03-09 23:19:30 +00:00
|
|
|
import Split from "../components/split";
|
|
|
|
import Latex from "../components/latex";
|
|
|
|
import Panel from "../components/panel";
|
|
|
|
import Example from "../components/example";
|
|
|
|
import Todo from "../components/todo";
|
|
|
|
|
|
|
|
const r = String.raw;
|
2020-03-09 23:18:13 +00:00
|
|
|
|
|
|
|
export default class OttimizzazioneLineare extends Component {
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div>
|
2020-03-11 16:15:17 +00:00
|
|
|
<h1>Ottimizzazione Lineare</h1>
|
2020-03-09 23:19:30 +00:00
|
|
|
<Split title={"Materiale"}>
|
|
|
|
<Panel title={"Videolezioni su YouTube"}>
|
|
|
|
<p>
|
2020-03-11 16:15:17 +00:00
|
|
|
<b>Consigliata: <a href={"https://www.youtube.com/playlist?list=PLh93e8qjTszffkHNn-19CqUOhHFbhBlBh"}>Playlist con rumori di sottofondo rimossi</a></b>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<a href={"https://www.youtube.com/playlist?list=PLh0s0u9-Vwuor8YXTflVvIIU82PO1oDXS"}>Playlist originale</a>
|
2020-03-09 23:19:30 +00:00
|
|
|
</p>
|
|
|
|
</Panel>
|
|
|
|
<Panel title={"Slides"}>
|
|
|
|
<p>
|
|
|
|
<Todo>TODO: Ripulire e caricare le slides da qualche parte</Todo>
|
|
|
|
</p>
|
|
|
|
</Panel>
|
|
|
|
</Split>
|
|
|
|
<Split title={"Le basi"}>
|
|
|
|
<Panel title={"Funzione obiettivo"}>
|
|
|
|
<p>
|
|
|
|
La funzione obiettivo è la funzione con valore noto sconosciuto:
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<Latex>{r`z = C_1 \cdot x_1 + C_2 \cdot x_2 + C_n \cdot x_n`}</Latex>
|
|
|
|
</p>
|
|
|
|
</Panel>
|
|
|
|
<Panel title={"Gradiente"}>
|
|
|
|
<p>
|
|
|
|
Funzione della funzione obiettivo che indica la direzione del suo aumento più veloce.
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<Latex>{r`\nabla f = \frac{\delta f}{\delta x_1} e_1 + \frac{\delta f}{\delta x_2} e_2 + \frac{\delta f}{\delta x_n} e_n`}</Latex>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<Latex>{r`e_i`}</Latex> è la direzione della coordinata i-esima.
|
|
|
|
</p>
|
|
|
|
<Example>
|
|
|
|
Se <Latex>{r`n = 3`}</Latex>, allora:
|
|
|
|
<ul>
|
|
|
|
<li><Latex>{r`e_1 = (1, 0, 0)`}</Latex></li>
|
|
|
|
<li><Latex>{r`e_2 = (0, 1, 0)`}</Latex></li>
|
|
|
|
<li><Latex>{r`e_3 = (0, 0, 1)`}</Latex></li>
|
|
|
|
</ul>
|
|
|
|
</Example>
|
|
|
|
<Example>
|
|
|
|
Se la funzione obiettivo è <Latex>z = 2w + 3x + 4y</Latex>, il suo gradiente è <Latex>{r`\nabla z = (2, 3, 4)`}</Latex>.
|
|
|
|
</Example>
|
|
|
|
</Panel>
|
|
|
|
</Split>
|
2020-03-10 20:59:40 +00:00
|
|
|
<Split title={"La forma standard"}>
|
|
|
|
<Panel title={"Condizioni"}>
|
|
|
|
<p>
|
|
|
|
Un sistema è in <i>forma standard</i> quando ha:
|
|
|
|
</p>
|
|
|
|
<ul>
|
|
|
|
<li>Solo equazioni</li>
|
|
|
|
<li>Tutte le variabili maggiori di zero</li>
|
|
|
|
</ul>
|
|
|
|
</Panel>
|
|
|
|
<Panel title={"Slack"}>
|
|
|
|
<p>
|
|
|
|
Possiamo trasformare una disequazione in equazione introducendo variabili <i>slack</i>:
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<Latex>{r`3x + 2y \leq 15 \implies 3x + 2y + s_1 = 15`}</Latex>
|
|
|
|
</p>
|
|
|
|
<p>
|
2020-03-11 11:37:34 +00:00
|
|
|
In seguito, possiamo riscrivere tutte le funzioni in termini delle variabili slack.
|
2020-03-10 20:59:40 +00:00
|
|
|
</p>
|
|
|
|
<Example>
|
|
|
|
Si ottiene qualcosa come <Latex>{r`z = -2 s_1 - 3 s_2 + 40`}</Latex>.
|
|
|
|
</Example>
|
|
|
|
</Panel>
|
2020-03-11 11:37:34 +00:00
|
|
|
<Panel title={"Tableu"}>
|
2020-03-10 20:59:40 +00:00
|
|
|
<p>
|
2020-03-11 11:37:34 +00:00
|
|
|
Un modo per rappresentare sistemi in forma standard.
|
2020-03-10 20:59:40 +00:00
|
|
|
</p>
|
|
|
|
<p>
|
2020-03-11 11:37:34 +00:00
|
|
|
<table class={"right"}>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th/>
|
|
|
|
<th><Latex>x</Latex></th>
|
|
|
|
<th><Latex>y</Latex></th>
|
|
|
|
<th><Latex>s_1</Latex></th>
|
|
|
|
<th><Latex>s_2</Latex></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>ob.</td>
|
|
|
|
<td><Latex>80</Latex></td>
|
|
|
|
<td><Latex>70</Latex></td>
|
|
|
|
<td><Latex>0</Latex></td>
|
|
|
|
<td><Latex>0</Latex></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td/>
|
|
|
|
<td><Latex>3</Latex></td>
|
|
|
|
<td><Latex>2</Latex></td>
|
|
|
|
<td><Latex>1</Latex></td>
|
|
|
|
<td><Latex>0</Latex></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td/>
|
|
|
|
<td><Latex>2</Latex></td>
|
|
|
|
<td><Latex>3</Latex></td>
|
|
|
|
<td><Latex>0</Latex></td>
|
|
|
|
<td><Latex>1</Latex></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Riscrivendo in termini delle variabili slack, otteniamo:
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<table class={"right"}>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th/>
|
|
|
|
<th><Latex>x</Latex></th>
|
|
|
|
<th><Latex>y</Latex></th>
|
|
|
|
<th><Latex>s_1</Latex></th>
|
|
|
|
<th><Latex>s_2</Latex></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>ob.</td>
|
|
|
|
<td><Latex>0</Latex></td>
|
|
|
|
<td><Latex>0</Latex></td>
|
|
|
|
<td><Latex>-20</Latex></td>
|
|
|
|
<td><Latex>-10</Latex></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td/>
|
|
|
|
<td><Latex>1</Latex></td>
|
|
|
|
<td><Latex>0</Latex></td>
|
|
|
|
<td><Latex>{r`\frac{3}{5}`}</Latex></td>
|
|
|
|
<td><Latex>{r`-\frac{2}{5}`}</Latex></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td/>
|
|
|
|
<td><Latex>0</Latex></td>
|
|
|
|
<td><Latex>1</Latex></td>
|
|
|
|
<td><Latex>{r`-\frac{2}{5}`}</Latex></td>
|
|
|
|
<td><Latex>{r`\frac{3}{5}`}</Latex></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2020-03-10 20:59:40 +00:00
|
|
|
</p>
|
|
|
|
</Panel>
|
|
|
|
</Split>
|
2020-03-09 23:18:13 +00:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|