***
Based on the [[median voter theorem]]
The median voter tries to maximize his income through [[progressive taxations|progressive taxation]]
The [[opinion]] that matters is the preference of the person at the middle of all the people. Because this will be the person deciding at the end of the vote
The [[parti politique|party]] that will vote is the one behind the median voter in a [[majority voting|majority voting]] system
In this theory, we will assume that median voter = median income
*So = as long as the median income is below the mean (moyen) income, the distribution increases*
En gros si le salaire médian est inférieur à la moyenne des salaires, la [[redistribution|redistribution]] augmentera
-> on devrait tendre vers l'[[égalité]] parfaite selon l'[[indice de Gini|Gini index]]
So it explains why when more people have the right to vote, we will see more redistribution
Thus, [[suffrage universel|universal suffrage]] should be [[corrélation|correlated]] with higher equality
So when you have a higher level of [[inégalités|inequality]], you have a higher level of redistribution
But this theory is not really backed by studies
this theory doesn't explain the differences between the [[État|countries]] in redistribution
-> [[critics of the theory of the size of government]]
-> [[Three critical steps of the electoral process that can distort the representation of citizen preferences for redistribution]]
[[reduce distorsions the representation of citizen preferences for redistribution]]
## Notes de bas de page
```dataviewjs
// === DONNÉES ===
const page = dv.current();
const file = page.file;
const outlinks = file.outlinks.length;
const inlinks = file.inlinks.length;
const qualite = Math.max(0, Math.min(100, page["qualité"] ?? 0));
// === CALCUL PROGRESSION (0–100) ===
const max_links = 30;
const s_out = Math.min(outlinks / max_links, 1) * 40;
const s_in = Math.min(inlinks / max_links, 1) * 30;
const s_qual = qualite * 0.3;
const total = Math.round(s_out + s_in + s_qual);
// === ICÔNES ===
const iconEmoji =
total <= 25 ? "🌱" :
total <= 50 ? "🌿" :
total <= 75 ? "🌳" :
"🦚";
const iconLabel =
total <= 25 ? "🌱 Graine" :
total <= 50 ? "🌿 Jeune pousse" :
total <= 75 ? "🌳 Arbre mature" :
"🦚 Forêt";
// === MISE À JOUR YAML SANS CRÉER DE NOUVELLES CLÉS ===
const tfile = app.workspace.getActiveFile();
const cache = app.metadataCache.getFileCache(tfile);
// 1. Si pas de frontmatter → on ne touche à rien
if (cache?.frontmatter) {
await app.fileManager.processFrontMatter(tfile, fm => {
// 2. On met à jour seulement si la propriété existe déjà
if (Object.prototype.hasOwnProperty.call(fm, "progression")) {
fm.progression = total;
}
if (Object.prototype.hasOwnProperty.call(fm, "icon")) {
fm.icon = iconEmoji;
}
});
}
// === AFFICHAGE ===
dv.table(
["Liens sortants", "Liens entrants", "Qualité", "Progression"],
[[outlinks, inlinks, `${qualite}/100`, `${iconLabel} — ${total}/100`]]
);
```