Gemiddeld IQ in Frankrijk: Tabel, Statistieken en Interpretatie | DYNSEO :root { --purple-light: #C4B5FD; --purple: #8B5CF6; --purple-dark: #7C3AED; --violet: #6D28D9; --indigo: #4F46E5; --gold: #F59E0B; --green: #10B981; --white: #FFFFFF; --bg-light: #F5F3FF; --text-dark: #1E1B4B; --text-medium: #4B5563; --text-light: #6B7280; --border: rgba(139, 92, 246, 0.2); --shadow-sm: 0 2px 8px rgba(109, 40, 217, 0.1); --shadow-md: 0 4px 20px rgba(109, 40, 217, 0.15); } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Nunito', sans-serif; background: linear-gradient(180deg, #FAFAFA 0%, #F5F3FF 100%); color: var(--text-dark); line-height: 1.8; font-size: 17px; } .container { max-width: 850px; margin: 0 auto; padding: 40px 24px; } .breadcrumb { font-size: 0.85rem; color: var(--text-light); margin-bottom: 24px; } .breadcrumb a { color: var(--purple); text-decoration: none; } /* Header */ .article-header { text-align: center; margin-bottom: 48px; } .article-badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: linear-gradient(135deg, var(--purple), var(--violet)); border-radius: 50px; font-size: 0.8rem; font-weight: 700; color: white; text-transform: uppercase; margin-bottom: 20px; } h1 { font-family: 'Quicksand', sans-serif; font-size: clamp(1.8rem, 5vw, 2.5rem); font-weight: 700; color: var(--text-dark); line-height: 1.25; margin-bottom: 20px; } .article-meta { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: 0.9rem; color: var(--text-light); } /* Content */ .article-content { background: white; border-radius: 24px; padding: 48px 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); } @media (max-width: 600px) { .article-content { padding: 28px 20px; } } .article-content p { margin-bottom: 24px; color: var(--text-medium); } .article-content h2 { font-family: 'Quicksand', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--violet); margin: 48px 0 20px; padding-bottom: 12px; border-bottom: 3px solid var(--purple-light); } .article-content h3 { font-family: 'Quicksand', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin: 32px 0 16px; } .article-content ul { margin: 0 0 24px 24px; color: var(--text-medium); } .article-content li { margin-bottom: 10px; } .article-content strong { color: var(--text-dark); } /* Key Stat Hero */ .key-stat-hero { background: linear-gradient(135deg, var(--purple), var(--violet)); border-radius: 24px; padding: 48px 32px; text-align: center; color: white; margin: 40px 0; position: relative; overflow: hidden; } .key-stat-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%); } .key-stat-content { position: relative; z-index: 1; } .key-stat-number { font-family: 'Quicksand', sans-serif; font-size: 6rem; font-weight: 700; line-height: 1; text-shadow: 0 4px 20px rgba(0,0,0,0.2); } .key-stat-label { font-size: 1.3rem; opacity: 0.95; margin-top: 12px; } .key-stat-sub { font-size: 0.95rem; opacity: 0.8; margin-top: 8px; } /* Distribution Table */ .distribution-table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 0.95rem; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); } .distribution-table th { background: linear-gradient(135deg, var(--purple), var(--violet)); color: white; padding: 16px 12px; text-align: center; font-weight: 700; } .distribution-table td { padding: 14px 12px; text-align: center; border-bottom: 1px solid var(--border); color: var(--text-medium); } .distribution-table tr:nth-child(even) { background: var(--bg-light); } .distribution-table tr:hover { background: #EDE9FE; } .distribution-table .highlight-row { background: linear-gradient(135deg, #D1FAE5, #A7F3D0) !important; font-weight: 700; } .distribution-table .highlight-row td { color: #047857; } /* Visual Bell Curve */ .bell-curve-section { background: white; border: 2px solid var(--border); border-radius: 20px; padding: 32px; margin: 40px 0; text-align: center; } .bell-curve-title { font-family: 'Quicksand', sans-serif; font-size: 1.15rem; color: var(--violet); margin-bottom: 24px; } .bell-curve-svg { width: 100%; max-width: 600px; margin: 0 auto; } /* Category Cards */ .category-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 40px 0; } .category-card { background: white; border: 2px solid var(--border); border-radius: 16px; padding: 24px 20px; text-align: center; transition: all 0.3s ease; } .category-card:hover { border-color: var(--purple); transform: translateY(-4px); box-shadow: var(--shadow-md); } .category-card .range { font-family: 'Quicksand', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--purple); margin-bottom: 8px; } .category-card .name { font-weight: 700; color: var(--text-dark); margin-bottom: 4px; } .category-card .percent { font-size: 0.85rem; color: var(--text-light); } .category-card.highlight { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); border-color: var(--purple); } /* Highlight Box */ .highlight-box { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); border-left: 4px solid var(--purple); border-radius: 0 16px 16px 0; padding: 24px; margin: 32px 0; } .highlight-box p { margin: 0; font-weight: 600; color: var(--violet); } /* Famous IQ Section */ .famous-iq { background: linear-gradient(135deg, #FEF3C7, #FDE68A); border-radius: 20px; padding: 32px; margin: 40px 0; } .famous-iq h4 { font-family: 'Quicksand', sans-serif; color: #92400E; margin-bottom: 20px; text-align: center; } .famous-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; } .famous-item { background: white; border-radius: 12px; padding: 16px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.05); } .famous-item .iq { font-family: 'Quicksand', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--purple); } .famous-item .name { font-size: 0.9rem; color: var(--text-medium); margin-top: 4px; } /* Test CTA Widget */ .test-cta { background: linear-gradient(135deg, var(--purple), var(--violet), var(--indigo)); border-radius: 24px; padding: 40px 32px; margin: 48px 0; color: white; text-align: center; position: relative; overflow: hidden; } .test-cta::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/svg%3E"); } .test-cta-content { position: relative; z-index: 1; } .test-cta h3 { font-family: 'Quicksand', sans-serif; font-size: 1.6rem; margin-bottom: 12px; } .test-cta p { opacity: 0.9; margin-bottom: 28px; } /* Mini Demo */ .mini-demo { background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.2); border-radius: 16px; padding: 24px; margin-bottom: 28px; } .demo-label { display: inline-block; padding: 5px 12px; background: rgba(255,255,255,0.2); border-radius: 50px; font-size: 0.75rem; font-weight: 700; margin-bottom: 12px; } .demo-q { font-weight: 700; margin-bottom: 16px; } .demo-matrix { display: flex; justify-content: center; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; } .matrix-item { width: 48px; height: 48px; background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; } .matrix-item.gold { background: var(--gold); border-color: var(--gold); } .demo-options { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; } .demo-opt { padding: 10px 20px; background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2); border-radius: 10px; font-weight: 700; cursor: pointer; transition: all 0.2s; } .demo-opt:hover { background: rgba(255,255,255,0.2); } .demo-opt.correct { background: var(--green); border-color: var(--green); } /* CTA Button */ .cta-btn { display: inline-flex; align-items: center; gap: 12px; padding: 18px 40px; background: white; color: var(--violet); font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 800; border: none; border-radius: 60px; cursor: pointer; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.15); } .cta-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 30px rgba(0,0,0,0.2); } /* Final CTA */ .final-cta { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); border-radius: 20px; padding: 40px 32px; text-align: center; margin-top: 48px; } .final-cta h3 { font-family: 'Quicksand', sans-serif; font-size: 1.4rem; color: var(--violet); margin-bottom: 12px; } .final-cta p { color: var(--text-medium); margin-bottom: 24px; } .final-cta .cta-btn { background: linear-gradient(135deg, var(--purple), var(--violet)); color: white; } /* Responsive */ @media (max-width: 600px) { .container { padding: 24px 16px; } .key-stat-number { font-size: 4rem; } .test-cta { padding: 28px 20px; margin: 32px -20px; border-radius: 0; } .category-cards { grid-template-columns: repeat(2, 1fr); } } Home › Blog › Gemiddeld IQ 📊 Statistieken Gemiddeld IQ: Volledige Tabel, Statistieken en Interpretatie van Scores 📅 December 2024 ⏱️ 7 min leestijd
Wat is het gemiddelde IQ? Dit is een van de meest gestelde vragen over het intellectuele quotiënt. Of je nu net een test hebt gedaan of gewoon wilt begrijpen waar je staat ten opzichte van de bevolking, dit artikel geeft je alle antwoorden met duidelijke tabellen en nauwkeurige statistieken.
100 Gemiddeld IQ van de bevolking Per definitie, met een standaarddeviatie van 15 punten
Het gemiddelde IQ is vastgesteld op 100 bij conventie. Dit is geen toeval: IQ-tests zijn gekalibreerd zodat het gemiddelde van de bevolking altijd gelijk is aan 100, met een standaarddeviatie (maat voor de spreiding) van 15 punten.