- 코드 입력 → 프리미엄 ebook(55문항) 등록, localStorage 영속화 - 직접 문제 등록 → POST /study-logs → 복습 캘린더 자동 배치 - PDF 업로드 → backend uploads/problems/, 카탈로그에 PDF 카드 표시 - 시연용 인쇄 문제집 HTML (A4 10페이지, 표지+정답표) - 데모 등록코드: RELOOP-2026-MATH, DEMO-B2B-001 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
736 lines
26 KiB
HTML
736 lines
26 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="ko">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>고등 수학 완성 문제집 — ReLoop 프리미엄</title>
|
||
<style>
|
||
/* ── 기본 리셋 ── */
|
||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||
|
||
body {
|
||
font-family: 'Batang', 'Georgia', 'Times New Roman', serif;
|
||
font-size: 12pt;
|
||
line-height: 1.8;
|
||
color: #111;
|
||
background: #fff;
|
||
}
|
||
|
||
/* ── 인쇄 설정 ── */
|
||
@page {
|
||
size: A4;
|
||
margin: 2cm 2.5cm;
|
||
}
|
||
|
||
@media print {
|
||
.no-print { display: none !important; }
|
||
.page { page-break-after: always; }
|
||
.page:last-child { page-break-after: avoid; }
|
||
}
|
||
|
||
/* ── 화면에서 보이는 버튼 ── */
|
||
.no-print {
|
||
position: fixed;
|
||
top: 16px;
|
||
right: 16px;
|
||
z-index: 999;
|
||
background: #4F46E5;
|
||
color: #fff;
|
||
border: none;
|
||
padding: 10px 20px;
|
||
border-radius: 8px;
|
||
font-size: 14px;
|
||
cursor: pointer;
|
||
font-family: sans-serif;
|
||
font-weight: 600;
|
||
}
|
||
|
||
/* ── 페이지 래퍼 ── */
|
||
.page {
|
||
width: 100%;
|
||
min-height: 100vh;
|
||
padding: 40px 0;
|
||
border-bottom: 2px dashed #ccc;
|
||
}
|
||
|
||
@media print {
|
||
.page { border-bottom: none; padding: 0; }
|
||
}
|
||
|
||
/* ── 표지 ── */
|
||
.cover {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
text-align: center;
|
||
gap: 24px;
|
||
min-height: 80vh;
|
||
}
|
||
|
||
.cover-label {
|
||
font-size: 11pt;
|
||
letter-spacing: 0.15em;
|
||
color: #555;
|
||
text-transform: uppercase;
|
||
}
|
||
|
||
.cover-title {
|
||
font-size: 28pt;
|
||
font-weight: 700;
|
||
line-height: 1.3;
|
||
color: #111;
|
||
}
|
||
|
||
.cover-subtitle {
|
||
font-size: 13pt;
|
||
color: #444;
|
||
}
|
||
|
||
.cover-divider {
|
||
width: 80px;
|
||
height: 3px;
|
||
background: #4F46E5;
|
||
margin: 8px auto;
|
||
}
|
||
|
||
.cover-meta {
|
||
margin-top: 16px;
|
||
font-size: 11pt;
|
||
color: #666;
|
||
line-height: 2;
|
||
}
|
||
|
||
.cover-code-box {
|
||
margin-top: 32px;
|
||
border: 2px solid #4F46E5;
|
||
border-radius: 12px;
|
||
padding: 20px 32px;
|
||
display: inline-block;
|
||
}
|
||
|
||
.cover-code-label {
|
||
font-size: 10pt;
|
||
letter-spacing: 0.1em;
|
||
color: #555;
|
||
}
|
||
|
||
.cover-code {
|
||
font-size: 20pt;
|
||
font-weight: 700;
|
||
font-family: 'Courier New', monospace;
|
||
color: #4F46E5;
|
||
letter-spacing: 0.05em;
|
||
margin-top: 4px;
|
||
}
|
||
|
||
.cover-code-hint {
|
||
font-size: 9pt;
|
||
color: #888;
|
||
margin-top: 8px;
|
||
}
|
||
|
||
/* ── 문제 페이지 헤더 ── */
|
||
.chapter-header {
|
||
border-bottom: 2px solid #111;
|
||
padding-bottom: 8px;
|
||
margin-bottom: 24px;
|
||
}
|
||
|
||
.chapter-num {
|
||
font-size: 9pt;
|
||
color: #555;
|
||
letter-spacing: 0.1em;
|
||
}
|
||
|
||
.chapter-title {
|
||
font-size: 16pt;
|
||
font-weight: 700;
|
||
margin-top: 4px;
|
||
}
|
||
|
||
/* ── 문제 단위 ── */
|
||
.problem {
|
||
margin-bottom: 28px;
|
||
padding-bottom: 24px;
|
||
border-bottom: 1px solid #ddd;
|
||
}
|
||
|
||
.problem:last-child {
|
||
border-bottom: none;
|
||
}
|
||
|
||
.problem-num {
|
||
font-size: 13pt;
|
||
font-weight: 700;
|
||
margin-bottom: 6px;
|
||
color: #333;
|
||
}
|
||
|
||
.problem-body {
|
||
font-size: 11.5pt;
|
||
line-height: 1.9;
|
||
margin-bottom: 12px;
|
||
}
|
||
|
||
.choices {
|
||
list-style: none;
|
||
margin-left: 12px;
|
||
}
|
||
|
||
.choices li {
|
||
font-size: 11pt;
|
||
line-height: 1.8;
|
||
}
|
||
|
||
.choice-circle {
|
||
display: inline-block;
|
||
width: 18px;
|
||
height: 18px;
|
||
border: 1px solid #333;
|
||
border-radius: 50%;
|
||
text-align: center;
|
||
line-height: 18px;
|
||
font-size: 9pt;
|
||
margin-right: 6px;
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.difficulty-tag {
|
||
display: inline-block;
|
||
font-size: 8pt;
|
||
border-radius: 4px;
|
||
padding: 1px 6px;
|
||
margin-left: 8px;
|
||
vertical-align: middle;
|
||
}
|
||
|
||
.diff-easy { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
|
||
.diff-medium { background: #fef9c3; color: #854d0e; border: 1px solid #fde68a; }
|
||
.diff-hard { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
|
||
|
||
/* ── 정답표 ── */
|
||
.answer-table {
|
||
width: 100%;
|
||
border-collapse: collapse;
|
||
margin-top: 16px;
|
||
font-size: 10.5pt;
|
||
}
|
||
|
||
.answer-table th {
|
||
background: #f1f5f9;
|
||
padding: 8px;
|
||
text-align: center;
|
||
border: 1px solid #cbd5e1;
|
||
font-weight: 700;
|
||
}
|
||
|
||
.answer-table td {
|
||
padding: 7px 8px;
|
||
text-align: center;
|
||
border: 1px solid #e2e8f0;
|
||
}
|
||
|
||
.answer-table tr:nth-child(even) td {
|
||
background: #f8fafc;
|
||
}
|
||
|
||
/* ── 페이지 번호 ── */
|
||
.page-footer {
|
||
margin-top: 32px;
|
||
text-align: center;
|
||
font-size: 9pt;
|
||
color: #aaa;
|
||
}
|
||
|
||
@media print {
|
||
.page-footer { position: running(footer); }
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
|
||
<button class="no-print" onclick="window.print()">인쇄 / PDF 저장 (Ctrl+P)</button>
|
||
|
||
<!-- ===== 표지 ===== -->
|
||
<div class="page">
|
||
<div class="cover">
|
||
<div>
|
||
<p class="cover-label">ReLoop B2B Premium</p>
|
||
<div class="cover-divider"></div>
|
||
</div>
|
||
<h1 class="cover-title">고등 수학 완성<br>문제집</h1>
|
||
<p class="cover-subtitle">다항식부터 미적분까지 · 고1~고2</p>
|
||
<div class="cover-meta">
|
||
총 55문항 · 10페이지<br>
|
||
다항식 · 이차함수 · 삼각함수 · 수열 · 미적분
|
||
</div>
|
||
<div class="cover-code-box">
|
||
<p class="cover-code-label">등록 코드 (ReLoop 앱에 입력)</p>
|
||
<p class="cover-code">RELOOP-2026-MATH</p>
|
||
<p class="cover-code-hint">또는 DEMO-B2B-001</p>
|
||
</div>
|
||
<div class="page-footer">고등 수학 완성 문제집 · ⓒ 2026 ReLoop</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- ===== 1~2페이지: 다항식과 인수분해 ===== -->
|
||
<div class="page">
|
||
<div class="chapter-header">
|
||
<p class="chapter-num">1~2페이지</p>
|
||
<h2 class="chapter-title">다항식과 인수분해</h2>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">1번 <span class="difficulty-tag diff-medium">보통</span></p>
|
||
<p class="problem-body">다항식 (2x − 3)³을 전개했을 때 x² 의 계수는?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> −54</li>
|
||
<li><span class="choice-circle">2</span> 54</li>
|
||
<li><span class="choice-circle">3</span> −36</li>
|
||
<li><span class="choice-circle">4</span> 36</li>
|
||
<li><span class="choice-circle">5</span> 18</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">2번 <span class="difficulty-tag diff-easy">쉬움</span></p>
|
||
<p class="problem-body">다항식 f(x) = x³ − 4x² + 5x − 2 를 (x − 2)로 나누었을 때 나머지는?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 0</li>
|
||
<li><span class="choice-circle">2</span> 1</li>
|
||
<li><span class="choice-circle">3</span> −1</li>
|
||
<li><span class="choice-circle">4</span> 2</li>
|
||
<li><span class="choice-circle">5</span> 4</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">3번 <span class="difficulty-tag diff-medium">보통</span></p>
|
||
<p class="problem-body">x³ − 8y³ 을 인수분해하면?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> (x − 2y)(x² + 2xy + 4y²)</li>
|
||
<li><span class="choice-circle">2</span> (x + 2y)(x² − 2xy + 4y²)</li>
|
||
<li><span class="choice-circle">3</span> (x − 2y)(x² − 2xy + 4y²)</li>
|
||
<li><span class="choice-circle">4</span> (x − 2y)³</li>
|
||
<li><span class="choice-circle">5</span> (x + 2y)³</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">4번 <span class="difficulty-tag diff-medium">보통</span></p>
|
||
<p class="problem-body">다항식 x⁴ − 5x² + 4 를 인수분해하면 (x−a)(x+a)(x−b)(x+b) 일 때, a²+b² 의 값은? (단, a > b > 0)</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 3</li>
|
||
<li><span class="choice-circle">2</span> 4</li>
|
||
<li><span class="choice-circle">3</span> 5</li>
|
||
<li><span class="choice-circle">4</span> 6</li>
|
||
<li><span class="choice-circle">5</span> 7</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">5번 <span class="difficulty-tag diff-easy">쉬움</span></p>
|
||
<p class="problem-body">등식 x² + kx + 9 = (x + m)² 이 항등식이 되도록 하는 양의 정수 k, m 에 대하여 k + m 의 값은?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 3</li>
|
||
<li><span class="choice-circle">2</span> 6</li>
|
||
<li><span class="choice-circle">3</span> 9</li>
|
||
<li><span class="choice-circle">4</span> 12</li>
|
||
<li><span class="choice-circle">5</span> 15</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">6번 <span class="difficulty-tag diff-easy">쉬움</span></p>
|
||
<p class="problem-body">두 다항식 A = 2x² + 3x − 1, B = x² − x + 2 에 대해 2A − 3B 를 구하면?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> x² + 9x − 8</li>
|
||
<li><span class="choice-circle">2</span> x² − 9x + 8</li>
|
||
<li><span class="choice-circle">3</span> 3x² + 9x − 8</li>
|
||
<li><span class="choice-circle">4</span> x² + 9x + 8</li>
|
||
<li><span class="choice-circle">5</span> 3x² − 9x + 8</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="page-footer">— 2 —</div>
|
||
</div>
|
||
|
||
<!-- ===== 3~4페이지: 다항식 계속 + 이차함수 ===== -->
|
||
<div class="page">
|
||
<div class="chapter-header">
|
||
<p class="chapter-num">3~4페이지</p>
|
||
<h2 class="chapter-title">다항식 심화 / 이차함수와 이차방정식</h2>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">7번 <span class="difficulty-tag diff-hard">어려움</span></p>
|
||
<p class="problem-body">f(x) = x³ + ax + b 를 (x−1) 로 나누면 3, (x+2) 로 나누면 −6 일 때, a + b 의 값은?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> −3</li>
|
||
<li><span class="choice-circle">2</span> −1</li>
|
||
<li><span class="choice-circle">3</span> 0</li>
|
||
<li><span class="choice-circle">4</span> 1</li>
|
||
<li><span class="choice-circle">5</span> 3</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">8번 <span class="difficulty-tag diff-medium">보통</span></p>
|
||
<p class="problem-body">x + y = 3, xy = 1 일 때 x³ + y³ 의 값은?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 18</li>
|
||
<li><span class="choice-circle">2</span> 21</li>
|
||
<li><span class="choice-circle">3</span> 24</li>
|
||
<li><span class="choice-circle">4</span> 27</li>
|
||
<li><span class="choice-circle">5</span> 30</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">9번 <span class="difficulty-tag diff-easy">쉬움</span></p>
|
||
<p class="problem-body">다항식 x² + 2xy + y² − 9 를 인수분해하면?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> (x+y+3)(x+y−3)</li>
|
||
<li><span class="choice-circle">2</span> (x−y+3)(x−y−3)</li>
|
||
<li><span class="choice-circle">3</span> (x+y)² − 9</li>
|
||
<li><span class="choice-circle">4</span> (x+3)(y−3)</li>
|
||
<li><span class="choice-circle">5</span> (x−3)(y+3)</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">10번 <span class="difficulty-tag diff-medium">보통</span></p>
|
||
<p class="problem-body">6x² + 7x − 3 을 인수분해하면 (ax+b)(cx+d) 일 때, a+b+c+d 의 값은? (단 a,b,c,d는 정수)</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 3</li>
|
||
<li><span class="choice-circle">2</span> 4</li>
|
||
<li><span class="choice-circle">3</span> 6</li>
|
||
<li><span class="choice-circle">4</span> 7</li>
|
||
<li><span class="choice-circle">5</span> 9</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">11번 <span class="difficulty-tag diff-hard">어려움</span></p>
|
||
<p class="problem-body">다항식 f(x) 가 (x+1)(x−2) 로 나누어지고, (x−1) 로 나누면 나머지가 4 일 때, f(x) 를 (x+1)(x−1) 로 나눈 나머지의 x 계수는?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 1</li>
|
||
<li><span class="choice-circle">2</span> 2</li>
|
||
<li><span class="choice-circle">3</span> −1</li>
|
||
<li><span class="choice-circle">4</span> −2</li>
|
||
<li><span class="choice-circle">5</span> 0</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">12번 <span class="difficulty-tag diff-medium">보통</span></p>
|
||
<p class="problem-body">a + b + c = 0 일 때 a³ + b³ + c³ 의 값은?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 0</li>
|
||
<li><span class="choice-circle">2</span> abc</li>
|
||
<li><span class="choice-circle">3</span> 3abc</li>
|
||
<li><span class="choice-circle">4</span> −3abc</li>
|
||
<li><span class="choice-circle">5</span> a²b²c²</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="page-footer">— 3 —</div>
|
||
</div>
|
||
|
||
<!-- ===== 5~6페이지: 이차함수 ===== -->
|
||
<div class="page">
|
||
<div class="chapter-header">
|
||
<p class="chapter-num">5~6페이지</p>
|
||
<h2 class="chapter-title">이차함수와 이차방정식</h2>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">13번 <span class="difficulty-tag diff-easy">쉬움</span></p>
|
||
<p class="problem-body">이차방정식 x² − 5x + 6 = 0 의 두 근 α, β 에 대해 α² + β² 의 값은?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 11</li>
|
||
<li><span class="choice-circle">2</span> 12</li>
|
||
<li><span class="choice-circle">3</span> 13</li>
|
||
<li><span class="choice-circle">4</span> 14</li>
|
||
<li><span class="choice-circle">5</span> 15</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">14번 <span class="difficulty-tag diff-easy">쉬움</span></p>
|
||
<p class="problem-body">이차함수 y = −2x² + 8x − 3 의 최댓값은?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 3</li>
|
||
<li><span class="choice-circle">2</span> 4</li>
|
||
<li><span class="choice-circle">3</span> 5</li>
|
||
<li><span class="choice-circle">4</span> 6</li>
|
||
<li><span class="choice-circle">5</span> 7</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">15번 <span class="difficulty-tag diff-medium">보통</span></p>
|
||
<p class="problem-body">이차방정식 2x² − 3x + k = 0 이 허근을 가질 조건은?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> k > 9/8</li>
|
||
<li><span class="choice-circle">2</span> k < 9/8</li>
|
||
<li><span class="choice-circle">3</span> k ≥ 9/8</li>
|
||
<li><span class="choice-circle">4</span> k ≤ 9/8</li>
|
||
<li><span class="choice-circle">5</span> k = 9/8</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">16번 <span class="difficulty-tag diff-easy">쉬움</span></p>
|
||
<p class="problem-body">이차함수 y = x² + ax + b 의 꼭짓점이 (2, −1) 일 때 a + b 의 값은?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> −7</li>
|
||
<li><span class="choice-circle">2</span> −5</li>
|
||
<li><span class="choice-circle">3</span> −3</li>
|
||
<li><span class="choice-circle">4</span> 1</li>
|
||
<li><span class="choice-circle">5</span> 3</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">17번 <span class="difficulty-tag diff-hard">어려움</span></p>
|
||
<p class="problem-body">x에 대한 이차방정식 x² − (k+2)x + 2k = 0 의 두 근이 모두 양수이고 두 근의 합이 두 근의 곱보다 클 때, 이를 만족하는 정수 k 의 최솟값은?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 1</li>
|
||
<li><span class="choice-circle">2</span> 2</li>
|
||
<li><span class="choice-circle">3</span> 3</li>
|
||
<li><span class="choice-circle">4</span> 4</li>
|
||
<li><span class="choice-circle">5</span> 5</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">18번 <span class="difficulty-tag diff-easy">쉬움</span></p>
|
||
<p class="problem-body">포물선 y = x² − 4x + 3 과 직선 y = 2x − 1 의 교점의 개수는?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 0</li>
|
||
<li><span class="choice-circle">2</span> 1</li>
|
||
<li><span class="choice-circle">3</span> 2</li>
|
||
<li><span class="choice-circle">4</span> 3</li>
|
||
<li><span class="choice-circle">5</span> 교점 없음</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="page-footer">— 5 —</div>
|
||
</div>
|
||
|
||
<!-- ===== 7~8페이지: 삼각함수 ===== -->
|
||
<div class="page">
|
||
<div class="chapter-header">
|
||
<p class="chapter-num">7~8페이지</p>
|
||
<h2 class="chapter-title">삼각함수 기초</h2>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">24번 <span class="difficulty-tag diff-easy">쉬움</span></p>
|
||
<p class="problem-body">sin²θ + cos²θ 의 값은?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 0</li>
|
||
<li><span class="choice-circle">2</span> 1/2</li>
|
||
<li><span class="choice-circle">3</span> 1</li>
|
||
<li><span class="choice-circle">4</span> 2</li>
|
||
<li><span class="choice-circle">5</span> sinθcosθ</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">25번 <span class="difficulty-tag diff-medium">보통</span></p>
|
||
<p class="problem-body">π/2 < θ < π 이고 sinθ = 3/5 일 때 cosθ 의 값은?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 4/5</li>
|
||
<li><span class="choice-circle">2</span> −4/5</li>
|
||
<li><span class="choice-circle">3</span> 3/4</li>
|
||
<li><span class="choice-circle">4</span> −3/4</li>
|
||
<li><span class="choice-circle">5</span> 5/4</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">26번 <span class="difficulty-tag diff-easy">쉬움</span></p>
|
||
<p class="problem-body">60° 를 라디안으로 변환하면?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> π/6</li>
|
||
<li><span class="choice-circle">2</span> π/4</li>
|
||
<li><span class="choice-circle">3</span> π/3</li>
|
||
<li><span class="choice-circle">4</span> 2π/3</li>
|
||
<li><span class="choice-circle">5</span> π/2</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">27번 <span class="difficulty-tag diff-medium">보통</span></p>
|
||
<p class="problem-body">tanθ = 2 일 때 (sinθ − cosθ)/(sinθ + cosθ) 의 값은?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 1/3</li>
|
||
<li><span class="choice-circle">2</span> 1/2</li>
|
||
<li><span class="choice-circle">3</span> 2/3</li>
|
||
<li><span class="choice-circle">4</span> 1</li>
|
||
<li><span class="choice-circle">5</span> 3</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">28번 <span class="difficulty-tag diff-easy">쉬움</span></p>
|
||
<p class="problem-body">sin 150° 의 값은?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> −√3/2</li>
|
||
<li><span class="choice-circle">2</span> −1/2</li>
|
||
<li><span class="choice-circle">3</span> 1/2</li>
|
||
<li><span class="choice-circle">4</span> √3/2</li>
|
||
<li><span class="choice-circle">5</span> 1</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">31번 <span class="difficulty-tag diff-hard">어려움</span></p>
|
||
<p class="problem-body">sin(π−θ)·cos(π+θ)·tan(2π−θ) 를 간단히 하면?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> sinθ·cosθ·tanθ</li>
|
||
<li><span class="choice-circle">2</span> sin²θ</li>
|
||
<li><span class="choice-circle">3</span> cos²θ</li>
|
||
<li><span class="choice-circle">4</span> tan²θ</li>
|
||
<li><span class="choice-circle">5</span> −sin²θ</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="page-footer">— 7 —</div>
|
||
</div>
|
||
|
||
<!-- ===== 9~10페이지: 수열과 미적분 ===== -->
|
||
<div class="page">
|
||
<div class="chapter-header">
|
||
<p class="chapter-num">9~10페이지</p>
|
||
<h2 class="chapter-title">수열과 급수 / 미분과 적분 기초</h2>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">35번 <span class="difficulty-tag diff-easy">쉬움</span></p>
|
||
<p class="problem-body">등차수열 {aₙ} 에서 a₁ = 3, a₄ = 12 일 때 공차 d 는?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 2</li>
|
||
<li><span class="choice-circle">2</span> 3</li>
|
||
<li><span class="choice-circle">3</span> 4</li>
|
||
<li><span class="choice-circle">4</span> 5</li>
|
||
<li><span class="choice-circle">5</span> 6</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">36번 <span class="difficulty-tag diff-easy">쉬움</span></p>
|
||
<p class="problem-body">등비수열 {aₙ} 에서 a₁ = 2, 공비 r = 3 일 때 첫째항부터 제5항까지의 합은?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 182</li>
|
||
<li><span class="choice-circle">2</span> 242</li>
|
||
<li><span class="choice-circle">3</span> 244</li>
|
||
<li><span class="choice-circle">4</span> 272</li>
|
||
<li><span class="choice-circle">5</span> 364</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">46번 <span class="difficulty-tag diff-easy">쉬움</span></p>
|
||
<p class="problem-body">f(x) = x³ − 3x + 1 에서 f′(x) 는?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 3x² − 3</li>
|
||
<li><span class="choice-circle">2</span> 3x² + 3</li>
|
||
<li><span class="choice-circle">3</span> x² − 3</li>
|
||
<li><span class="choice-circle">4</span> 3x − 3</li>
|
||
<li><span class="choice-circle">5</span> 3x²</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">48번 <span class="difficulty-tag diff-easy">쉬움</span></p>
|
||
<p class="problem-body">∫(2x+3)dx 를 구하면? (적분상수 C 포함)</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> x²+3x+C</li>
|
||
<li><span class="choice-circle">2</span> x²+3+C</li>
|
||
<li><span class="choice-circle">3</span> 2x²+3x+C</li>
|
||
<li><span class="choice-circle">4</span> 2+C</li>
|
||
<li><span class="choice-circle">5</span> x+3x+C</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="problem">
|
||
<p class="problem-num">55번 <span class="difficulty-tag diff-easy">쉬움</span></p>
|
||
<p class="problem-body">함수 f(x) 가 F′(x) = f(x), F(0) = 1, F(2) = 5 일 때 ∫₀² f(x)dx 의 값은?</p>
|
||
<ul class="choices">
|
||
<li><span class="choice-circle">1</span> 2</li>
|
||
<li><span class="choice-circle">2</span> 4</li>
|
||
<li><span class="choice-circle">3</span> 6</li>
|
||
<li><span class="choice-circle">4</span> 8</li>
|
||
<li><span class="choice-circle">5</span> 10</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="page-footer">— 10 —</div>
|
||
</div>
|
||
|
||
<!-- ===== 정답표 ===== -->
|
||
<div class="page" style="page-break-before: always;">
|
||
<div class="chapter-header">
|
||
<p class="chapter-num">정답 및 해설</p>
|
||
<h2 class="chapter-title">정답표</h2>
|
||
</div>
|
||
|
||
<table class="answer-table">
|
||
<thead>
|
||
<tr>
|
||
<th>번호</th><th>정답</th><th>번호</th><th>정답</th><th>번호</th><th>정답</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr><td>1</td><td>①</td><td>11</td><td>②</td><td>21</td><td>①</td></tr>
|
||
<tr><td>2</td><td>①</td><td>12</td><td>③</td><td>22</td><td>①</td></tr>
|
||
<tr><td>3</td><td>①</td><td>13</td><td>③</td><td>23</td><td>③</td></tr>
|
||
<tr><td>4</td><td>③</td><td>14</td><td>③</td><td>24</td><td>③</td></tr>
|
||
<tr><td>5</td><td>③</td><td>15</td><td>①</td><td>25</td><td>②</td></tr>
|
||
<tr><td>6</td><td>①</td><td>16</td><td>②</td><td>26</td><td>③</td></tr>
|
||
<tr><td>7</td><td>①</td><td>17</td><td>①</td><td>27</td><td>①</td></tr>
|
||
<tr><td>8</td><td>①</td><td>18</td><td>③</td><td>28</td><td>③</td></tr>
|
||
<tr><td>9</td><td>①</td><td>19</td><td>①</td><td>29</td><td>④</td></tr>
|
||
<tr><td>10</td><td>④</td><td>20</td><td>①</td><td>30</td><td>③</td></tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
<br>
|
||
|
||
<table class="answer-table">
|
||
<thead>
|
||
<tr>
|
||
<th>번호</th><th>정답</th><th>번호</th><th>정답</th><th>번호</th><th>정답</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr><td>31</td><td>②</td><td>41</td><td>①</td><td>51</td><td>②</td></tr>
|
||
<tr><td>32</td><td>③</td><td>42</td><td>③</td><td>52</td><td>③</td></tr>
|
||
<tr><td>33</td><td>③</td><td>43</td><td>①</td><td>53</td><td>③</td></tr>
|
||
<tr><td>34</td><td>②</td><td>44</td><td>①</td><td>54</td><td>①</td></tr>
|
||
<tr><td>35</td><td>②</td><td>45</td><td>①</td><td>55</td><td>②</td></tr>
|
||
<tr><td>36</td><td>②</td><td>46</td><td>①</td><td colspan="2"></td></tr>
|
||
<tr><td>37</td><td>②</td><td>47</td><td>①</td><td colspan="2"></td></tr>
|
||
<tr><td>38</td><td>③</td><td>48</td><td>①</td><td colspan="2"></td></tr>
|
||
<tr><td>39</td><td>②</td><td>49</td><td>③</td><td colspan="2"></td></tr>
|
||
<tr><td>40</td><td>③</td><td>50</td><td>④</td><td colspan="2"></td></tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
<div style="margin-top: 32px; font-size: 10pt; color: #555; line-height: 1.8;">
|
||
<strong>주의사항</strong><br>
|
||
· 이 문제집은 ReLoop B2B 프리미엄 시연용입니다.<br>
|
||
· 등록 코드: <strong>RELOOP-2026-MATH</strong> 또는 <strong>DEMO-B2B-001</strong><br>
|
||
· ReLoop 앱(reloop.nabomhalang.co.kr)에 코드를 입력하면 55문항 전체를 앱에서 풀 수 있습니다.
|
||
</div>
|
||
|
||
<div class="page-footer">— 정답표 — ⓒ 2026 ReLoop</div>
|
||
</div>
|
||
|
||
</body>
|
||
</html>
|