Created
April 19, 2026 19:03
-
-
Save PandaWhoCodes/34832e0df545d018d544d1e5afd654da to your computer and use it in GitHub Desktop.
Matthew 5 — Scholarly Exegesis (Sermon on the Mount) with focus on 5:33-48
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Matthew 5 — A Scholarly Analysis</title> | |
| <style> | |
| :root { | |
| --bg: #fbfaf7; | |
| --text: #1f1d1a; | |
| --muted: #6b6862; | |
| --rule: #e5e1d8; | |
| --accent: #8b4513; | |
| --accent-soft: #f4eee2; | |
| --highlight: #fff8e7; | |
| --focus-bg: #f7f1e3; | |
| --focus-border: #b8860b; | |
| --mono: ui-monospace, "SF Mono", Menlo, monospace; | |
| --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif; | |
| --sans: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", sans-serif; | |
| } | |
| * { box-sizing: border-box; } | |
| html { scroll-behavior: smooth; } | |
| body { | |
| margin: 0; | |
| font-family: var(--serif); | |
| font-size: 18px; | |
| line-height: 1.72; | |
| color: var(--text); | |
| background: var(--bg); | |
| -webkit-font-smoothing: antialiased; | |
| font-feature-settings: "kern", "liga", "onum"; | |
| } | |
| .wrap { | |
| display: grid; | |
| grid-template-columns: 260px 1fr; | |
| max-width: 1180px; | |
| margin: 0 auto; | |
| gap: 60px; | |
| padding: 60px 40px; | |
| } | |
| nav.toc { | |
| position: sticky; | |
| top: 40px; | |
| align-self: start; | |
| font-family: var(--sans); | |
| font-size: 13px; | |
| max-height: calc(100vh - 80px); | |
| overflow-y: auto; | |
| } | |
| nav.toc h4 { | |
| font-size: 11px; | |
| font-weight: 600; | |
| letter-spacing: 0.12em; | |
| text-transform: uppercase; | |
| color: var(--muted); | |
| margin: 0 0 14px; | |
| } | |
| nav.toc ol { | |
| list-style: none; | |
| padding: 0; | |
| margin: 0; | |
| counter-reset: toc; | |
| } | |
| nav.toc li { | |
| counter-increment: toc; | |
| margin: 6px 0; | |
| padding-left: 24px; | |
| position: relative; | |
| } | |
| nav.toc li::before { | |
| content: counter(toc, upper-roman) "."; | |
| position: absolute; | |
| left: 0; | |
| color: var(--muted); | |
| font-variant: small-caps; | |
| } | |
| nav.toc a { | |
| color: var(--text); | |
| text-decoration: none; | |
| border-bottom: 1px solid transparent; | |
| } | |
| nav.toc a:hover { border-bottom-color: var(--accent); color: var(--accent); } | |
| nav.toc li.focus::before { content: "★"; color: var(--focus-border); } | |
| nav.toc li.focus a { font-weight: 600; } | |
| nav.toc .sub { | |
| font-size: 12px; | |
| color: var(--muted); | |
| list-style: none; | |
| padding-left: 0; | |
| margin: 4px 0 10px 12px; | |
| } | |
| nav.toc .sub li { padding-left: 14px; } | |
| nav.toc .sub li::before { content: "·"; } | |
| main { max-width: 720px; min-width: 0; } | |
| header.title { | |
| padding-bottom: 48px; | |
| margin-bottom: 40px; | |
| border-bottom: 1px solid var(--rule); | |
| } | |
| header.title .eyebrow { | |
| font-family: var(--sans); | |
| font-size: 11px; | |
| letter-spacing: 0.18em; | |
| text-transform: uppercase; | |
| color: var(--muted); | |
| margin-bottom: 18px; | |
| } | |
| header.title h1 { | |
| font-size: 44px; | |
| line-height: 1.1; | |
| margin: 0 0 18px; | |
| font-weight: 500; | |
| letter-spacing: -0.01em; | |
| } | |
| header.title .sub { | |
| font-style: italic; | |
| color: var(--muted); | |
| font-size: 19px; | |
| margin: 0; | |
| } | |
| h2 { | |
| font-size: 30px; | |
| line-height: 1.25; | |
| font-weight: 500; | |
| letter-spacing: -0.005em; | |
| margin: 72px 0 8px; | |
| padding-top: 28px; | |
| border-top: 1px solid var(--rule); | |
| } | |
| h2 .num { | |
| display: block; | |
| font-family: var(--sans); | |
| font-size: 11px; | |
| font-weight: 600; | |
| letter-spacing: 0.18em; | |
| text-transform: uppercase; | |
| color: var(--muted); | |
| margin-bottom: 14px; | |
| } | |
| h2 + .lede { | |
| font-style: italic; | |
| color: var(--muted); | |
| margin-top: 0; | |
| margin-bottom: 32px; | |
| font-size: 18px; | |
| } | |
| h3 { | |
| font-size: 22px; | |
| font-weight: 600; | |
| margin: 48px 0 10px; | |
| letter-spacing: -0.003em; | |
| } | |
| h4 { | |
| font-size: 17px; | |
| font-weight: 700; | |
| margin: 32px 0 8px; | |
| color: var(--text); | |
| font-family: var(--sans); | |
| letter-spacing: 0.01em; | |
| } | |
| p { margin: 0 0 18px; } | |
| strong { font-weight: 700; color: var(--text); } | |
| em, i { font-style: italic; } | |
| .gk { font-style: italic; font-family: var(--serif); } | |
| .heb { font-family: "SBL Hebrew", "Times New Roman", serif; font-size: 1.05em; } | |
| a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent-soft); } | |
| a:hover { border-bottom-color: var(--accent); } | |
| ul, ol { padding-left: 22px; margin: 0 0 20px; } | |
| li { margin-bottom: 8px; } | |
| li > ul, li > ol { margin-top: 8px; margin-bottom: 0; } | |
| hr { border: 0; border-top: 1px solid var(--rule); margin: 48px 0; } | |
| blockquote { | |
| margin: 24px 0; | |
| padding: 4px 0 4px 22px; | |
| border-left: 3px solid var(--accent); | |
| color: var(--text); | |
| font-style: italic; | |
| } | |
| blockquote cite { | |
| display: block; | |
| font-style: normal; | |
| font-size: 14px; | |
| color: var(--muted); | |
| margin-top: 8px; | |
| font-family: var(--sans); | |
| } | |
| .pullquote { | |
| margin: 36px -20px; | |
| padding: 24px 28px; | |
| font-size: 22px; | |
| line-height: 1.4; | |
| font-style: italic; | |
| color: var(--text); | |
| border-top: 1px solid var(--rule); | |
| border-bottom: 1px solid var(--rule); | |
| text-align: left; | |
| } | |
| .callout { | |
| background: var(--accent-soft); | |
| border-radius: 4px; | |
| padding: 18px 22px; | |
| margin: 24px 0; | |
| font-size: 16px; | |
| line-height: 1.65; | |
| } | |
| .callout .label { | |
| font-family: var(--sans); | |
| font-size: 10px; | |
| font-weight: 700; | |
| letter-spacing: 0.15em; | |
| text-transform: uppercase; | |
| color: var(--accent); | |
| margin-bottom: 6px; | |
| } | |
| .callout p:last-child { margin-bottom: 0; } | |
| .focus { | |
| background: var(--focus-bg); | |
| border-left: 4px solid var(--focus-border); | |
| padding: 32px 36px; | |
| margin: 40px -24px; | |
| border-radius: 2px; | |
| } | |
| .focus .label { | |
| font-family: var(--sans); | |
| font-size: 10px; | |
| font-weight: 700; | |
| letter-spacing: 0.15em; | |
| text-transform: uppercase; | |
| color: var(--focus-border); | |
| margin-bottom: 8px; | |
| } | |
| mark { | |
| background: var(--highlight); | |
| padding: 0 2px; | |
| border-radius: 2px; | |
| } | |
| table { | |
| border-collapse: collapse; | |
| width: 100%; | |
| margin: 24px 0; | |
| font-size: 15px; | |
| font-family: var(--sans); | |
| } | |
| th, td { | |
| text-align: left; | |
| padding: 10px 14px; | |
| border-bottom: 1px solid var(--rule); | |
| vertical-align: top; | |
| } | |
| th { | |
| font-weight: 600; | |
| font-size: 12px; | |
| letter-spacing: 0.08em; | |
| text-transform: uppercase; | |
| color: var(--muted); | |
| background: var(--bg); | |
| } | |
| pre { | |
| background: #2a2621; | |
| color: #f4ede0; | |
| padding: 16px 20px; | |
| border-radius: 4px; | |
| font-family: var(--mono); | |
| font-size: 13px; | |
| line-height: 1.6; | |
| overflow-x: auto; | |
| margin: 20px 0; | |
| } | |
| code { | |
| font-family: var(--mono); | |
| font-size: 0.88em; | |
| background: var(--accent-soft); | |
| padding: 1px 5px; | |
| border-radius: 3px; | |
| } | |
| pre code { background: transparent; padding: 0; } | |
| .verse-label { | |
| font-family: var(--sans); | |
| font-weight: 700; | |
| font-size: 13px; | |
| letter-spacing: 0.04em; | |
| color: var(--accent); | |
| display: inline-block; | |
| margin-right: 6px; | |
| } | |
| footer.end { | |
| margin-top: 80px; | |
| padding-top: 40px; | |
| border-top: 1px solid var(--rule); | |
| font-size: 14px; | |
| color: var(--muted); | |
| font-family: var(--sans); | |
| } | |
| footer.end a { font-size: 13px; } | |
| @media (max-width: 900px) { | |
| .wrap { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; } | |
| nav.toc { position: relative; top: 0; max-height: none; padding-bottom: 20px; border-bottom: 1px solid var(--rule); } | |
| main { max-width: 100%; } | |
| header.title h1 { font-size: 34px; } | |
| h2 { font-size: 26px; } | |
| h3 { font-size: 20px; } | |
| .focus, .pullquote { margin-left: -8px; margin-right: -8px; padding-left: 20px; padding-right: 20px; } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="wrap"> | |
| <nav class="toc"> | |
| <h4>Contents</h4> | |
| <ol> | |
| <li><a href="#part-1">Context & Setting</a></li> | |
| <li><a href="#part-2">The Chapter, 5:1–32</a> | |
| <ul class="sub"> | |
| <li><a href="#beatitudes">Beatitudes (3–12)</a></li> | |
| <li><a href="#salt-light">Salt & Light (13–16)</a></li> | |
| <li><a href="#law-thesis">Law Thesis (17–20)</a></li> | |
| <li><a href="#ant-1-3">Antitheses 1–3</a></li> | |
| </ul> | |
| </li> | |
| <li class="focus"><a href="#part-3">Deep Dive: 5:33–48</a> | |
| <ul class="sub"> | |
| <li><a href="#oaths">Oaths (33–37)</a></li> | |
| <li><a href="#retaliation">Retaliation (38–42)</a></li> | |
| <li><a href="#enemies">Enemies (43–47)</a></li> | |
| <li><a href="#perfect">Perfect (48)</a></li> | |
| </ul> | |
| </li> | |
| <li><a href="#part-4">Rhetorical Structure</a></li> | |
| <li><a href="#part-5">Synthesis</a></li> | |
| </ol> | |
| </nav> | |
| <main> | |
| <header class="title"> | |
| <div class="eyebrow">Scholarly Analysis · Sermon on the Mount, Part 1</div> | |
| <h1>Matthew 5</h1> | |
| <p class="sub">A commentary-based exegesis, with special focus on the final three antitheses (5:33–48) — oaths, non-retaliation, and enemy-love.</p> | |
| </header> | |
| <p>This study draws on the major academic commentaries: <strong>Davies & Allison</strong> (ICC), <strong>Ulrich Luz</strong> (Hermeneia), <strong>R. T. France</strong> (NICNT), <strong>D. A. Carson</strong> (EBC), <strong>Donald Hagner</strong> (WBC), <strong>John Nolland</strong> (NIGTC), <strong>Craig Keener</strong>, <strong>Grant Osborne</strong> (ZECNT), <strong>Dale Allison</strong>, <strong>N. T. Wright</strong>, <strong>John Stott</strong>, <strong>Scot McKnight</strong>, <strong>Glen Stassen</strong>, <strong>Walter Wink</strong>, and <strong>Stanley Hauerwas</strong>. Greek terms appear in <span class="gk">italics</span> with transliteration; key scholarly debates are called out in boxes. Sources are hyperlinked inline.</p> | |
| <!-- ============================================================ --> | |
| <!-- PART I: CONTEXT --> | |
| <!-- ============================================================ --> | |
| <h2 id="part-1"><span class="num">Part I</span>Context & Setting</h2> | |
| <p class="lede">When, where, to whom — and why the mountain matters.</p> | |
| <h3>Date and Provenance</h3> | |
| <p>The consensus places Matthew's composition between <strong>ca. 80 and 90 CE</strong>, with ~85 CE as a frequent median. Three convergent arguments:</p> | |
| <ol> | |
| <li>Matthew depends on <strong>Mark</strong> (dated ca. 65–70 CE), setting a <em>terminus a quo</em> a decade later.</li> | |
| <li><strong>Matthew 22:7</strong> — "the king sent his army and burned their city" — is widely read as a <em>vaticinium ex eventu</em> of Jerusalem's fall in 70 CE.</li> | |
| <li><strong>Ignatius of Antioch</strong> (ca. 110 CE) clearly depends on Matthew, setting the <em>terminus ad quem</em>.</li> | |
| </ol> | |
| <p>A minority <strong>pre-70 position</strong> (Robinson, Wallace, Carson, Zacharias) argues that Matthew's temple references (5:23–24; 17:24–27) imply a functioning cult, and that Matthew 24 reads better with Jerusalem still standing. France, Hagner, Davies & Allison, Luz, Nolland, and Keener accept the post-70 consensus.</p> | |
| <p><strong>Syrian Antioch</strong> remains the leading provenance: Ignatius's early use, the Didache's dependence, the numismatic detail at 17:24–27 reflecting Antioch's coinage, the city's mixed Jewish-Gentile demographic, and Peter's prominence.</p> | |
| <h3>The Jewish-Christian Community</h3> | |
| <p>Matthew's audience is a <strong>Jewish-Christian community</strong> still in painful negotiation with (or recent separation from) emerging rabbinic Judaism. Markers:</p> | |
| <ul> | |
| <li>17 "fulfillment" formula citations</li> | |
| <li>Frequent Aramaic retentions</li> | |
| <li>Preserved Torah observance (5:17–20; 23:2–3)</li> | |
| <li>The distancing phrase "<em>their</em> synagogues / <em>their</em> scribes" (4:23; 9:35; 10:17; 13:54)</li> | |
| </ul> | |
| <p>The <strong>Birkat ha-Minim</strong> — the twelfth Amidah benediction attributed to Samuel the Small at Yavneh under Rabban Gamaliel II (ca. 85–90 CE) — roughly coincides with Matthew's social context. Luz frames the community as <em>extra muros</em> of the synagogue but still in its shadow.</p> | |
| <h3>Matthew's Five-Discourse Architecture</h3> | |
| <p>Since <strong>B. W. Bacon (1930)</strong>, Matthew has been read as organized around five discourses, each closing with <span class="gk">kai egeneto hote etelesen ho Iēsous</span> — "when Jesus had finished" — at 7:28, 11:1, 13:53, 19:1, 26:1:</p> | |
| <table> | |
| <thead><tr><th>#</th><th>Discourse</th><th>Chapters</th><th>Theme</th></tr></thead> | |
| <tbody> | |
| <tr><td>1</td><td>Sermon on the Mount</td><td>5–7</td><td>Discipleship / kingdom ethics</td></tr> | |
| <tr><td>2</td><td>Missionary Discourse</td><td>10</td><td>Mission</td></tr> | |
| <tr><td>3</td><td>Parables Discourse</td><td>13</td><td>Kingdom mysteries</td></tr> | |
| <tr><td>4</td><td>Community Discourse</td><td>18</td><td>Church life</td></tr> | |
| <tr><td>5</td><td>Olivet / Eschatological</td><td>23–25</td><td>Judgment</td></tr> | |
| </tbody> | |
| </table> | |
| <p>Bacon proposed this mirrors the <strong>Pentateuch</strong> — Jesus as a new Moses. The Sermon functions as "Exodus/Leviticus": constitutional law-giving for the new covenant community.</p> | |
| <p><strong>Jack Dean Kingsbury</strong> (1975) challenged Bacon: the scheme marginalizes the Passion narrative. He proposed a tripartite narrative-Christological structure keyed to <span class="gk">apo tote ērxato ho Iēsous</span> ("from that time Jesus began…") at 4:17 and 16:21:</p> | |
| <ol> | |
| <li><strong>1:1–4:16</strong> — The Person of Jesus Messiah</li> | |
| <li><strong>4:17–16:20</strong> — The Proclamation of Jesus Messiah</li> | |
| <li><strong>16:21–28:20</strong> — The Suffering, Death, and Resurrection</li> | |
| </ol> | |
| <p>Most commentators today take a <strong>mediating position</strong>: Bacon's observation is genuine, Moses typology is real but thematic rather than architecturally rigid.</p> | |
| <h3>The Mountain and the New-Moses Typology</h3> | |
| <p><strong>Dale C. Allison's</strong> landmark <em>The New Moses: A Matthean Typology</em> (Fortress, 1993) catalogues a striking parallel cluster:</p> | |
| <ul> | |
| <li><strong>Pharaoh / Herod</strong> — both slaughter male infants to preempt a predicted deliverer</li> | |
| <li><strong>Egypt sojourn</strong> — "Out of Egypt I called my son" (2:15, citing Hos 11:1)</li> | |
| <li><strong>Water crossing</strong> — baptism at the Jordan (ch. 3)</li> | |
| <li><strong>Wilderness testing</strong> — 40 days (ch. 4) paralleling Israel's 40 years and Moses' 40-day fasts</li> | |
| <li><strong>Mountain ascent</strong> — <span class="gk">anebē eis to oros</span> (5:1), verbatim LXX Exod 19:3; 24:18</li> | |
| <li><strong>Transfiguration</strong> on "a high mountain" (ch. 17) — shining face recalls Exod 34:29</li> | |
| <li><strong>Farewell commissioning</strong> on a mountain (28:16–20) — Moses on Nebo (Deut 34)</li> | |
| </ul> | |
| <p>But <strong>France</strong> cautions: Matthew's mountain is unnamed and generic, and Jesus' authority <em>exceeds</em> Moses'. Moses <em>mediated</em> God's word; Jesus <em>speaks as</em> authoritative lawgiver. The typology is present but not exhaustive of Matthean Christology, which also weaves in Davidic, Son of Man, Servant, and Wisdom motifs.</p> | |
| <h3>Matthew and Luke's Sermon on the Plain</h3> | |
| <p>Luke 6:20–49 shares a skeleton with Matthew 5–7: Beatitudes at the opening, Two-Houses parable at the close, shared material on enemies, judging, fruit/trees. The standard explanation under the <strong>Two-Source / Q Hypothesis</strong> is that both drew on a common saying-source (Q).</p> | |
| <table> | |
| <thead><tr><th>Feature</th><th>Matthew</th><th>Luke</th></tr></thead> | |
| <tbody> | |
| <tr><td>Length</td><td>107 verses</td><td>30 verses</td></tr> | |
| <tr><td>Beatitudes</td><td>8–9, 3rd person</td><td>4 blessings + 4 woes, 2nd person</td></tr> | |
| <tr><td>Economic status</td><td>"poor <strong>in spirit</strong>"</td><td>"the poor"</td></tr> | |
| <tr><td>Setting</td><td><span class="gk">oros</span> (mountain)</td><td><span class="gk">topos pedinos</span> (level place)</td></tr> | |
| </tbody> | |
| </table> | |
| <div class="callout"> | |
| <div class="label">Key debate — "poor in spirit"</div> | |
| <p>Is Matthew spiritualizing Luke's economic poverty, or preserving an older Palestinian-Jewish idiom?</p> | |
| <p>Davies & Allison and Luz argue Matthew reflects <strong>Qumran <em>ʿanawim</em> piety</strong> — specifically <strong>1QM 14:7</strong>'s <span class="gk">ʿanwê ruaḥ</span> ("poor/humble in spirit"). Matthew isn't abstracting; he's echoing a Second Temple Jewish self-designation. Liberation theologians (Sobrino, Gutierrez) and historical-Jesus scholars (Crossan) prefer Luke as closer to the <em>ipsissima vox</em>.</p> | |
| </div> | |
| <h3>Second Temple Background</h3> | |
| <h4>Qumran parallels</h4> | |
| <ul> | |
| <li><strong>4Q525 (4QBeatitudes)</strong> — Hasmonean text (ca. 100 BCE) with <strong>eight short beatitudes and an expanded ninth</strong>, exactly matching Matthew's formal structure. Evidence that the form was at home in Second Temple Judaism.</li> | |
| <li><strong>1QM 14:7</strong> — <span class="gk">ʿanwê ruaḥ</span>, the Hebrew antecedent of Matthew's "poor in spirit."</li> | |
| <li><strong>1QS 1:3–4, 9–11; 9:21–22</strong> — the notorious Essene oath to "love all the sons of light… and hate all the sons of darkness." The <em>only</em> known Jewish text explicitly commanding hatred of enemies, and the probable target of Matt 5:43.</li> | |
| <li><strong>1QH (Hodayot)</strong> — extensive <em>ʿanawim</em> piety paralleling Matthean humility and mourning.</li> | |
| </ul> | |
| <h4>Mishnaic tractates</h4> | |
| <ul> | |
| <li><strong>m. Shevuot / m. Nedarim</strong> — the elaborate oath casuistry Matt 5:33–37 critiques.</li> | |
| <li><strong>m. Gittin 9:10</strong> — the Hillel-Shammai divorce debate, direct Sitz im Leben of Matt 5:31–32.</li> | |
| <li><strong>Derekh Eretz Rabba 11.13</strong> and <strong>Lev Rabba 23.12</strong> — rabbinic analogues to the first two antitheses.</li> | |
| </ul> | |
| <h3>Key Interpretive Debates</h3> | |
| <h4>1. "Fulfill" (<span class="gk">plēroō</span>) in 5:17 — five options</h4> | |
| <ol> | |
| <li><strong>Do / Obey</strong> — Jesus fulfills by perfectly keeping the Law. Weak: <span class="gk">plēroō</span> rarely means obedience.</li> | |
| <li><strong>Add to / Supplement</strong> — Davies & Allison's reading.</li> | |
| <li><strong>Eschatological / Prophetic fulfillment</strong> — dominant modern view (France, Carson, Moo, Thielman). <span class="gk">plēroō</span> elsewhere in Matthew (1:22; 2:15, 17, 23) denotes prophetic fulfillment. Jesus brings Torah to its intended goal.</li> | |
| <li><strong>Reveal deeper meaning</strong> — classical Reformed reading (Calvin).</li> | |
| <li><strong>Teleological / salvation-historical</strong> — N. T. Wright: Torah is fulfilled as the covenant story reaches its climax in the Messiah.</li> | |
| </ol> | |
| <p>Most commentators adopt a layered reading. <strong>Davies & Allison</strong>: "we cannot speak of the Law being annulled in the antitheses, but only of its being intensified in its demand."</p> | |
| <h4>2. Antitheses: against Moses, or against rabbinic interpretation?</h4> | |
| <ul> | |
| <li><strong>Against Moses</strong> (Meier, Bornkamm): the 3rd, 5th, 6th antitheses genuinely abrogate Mosaic provisions.</li> | |
| <li><strong>Against rabbinic/popular interpretation</strong> (Calvin, Stott, Carson): Jesus opposes corrupt readings of Moses. <strong>Stott</strong>: "The contrast Jesus draws is not between Moses and himself, but between the <em>interpretations</em> of Moses current among the scribes and his own."</li> | |
| <li><strong>Intensification / Radicalization</strong> (Davies & Allison, Luz, Hagner): Jesus neither abrogates nor merely corrects — he radicalizes by addressing heart-disposition.</li> | |
| </ul> | |
| <h4>3. "Surpassing righteousness" (5:20)</h4> | |
| <p>Three options: <strong>quantitative</strong> (rejected — Jesus <em>relaxes</em> some observance); <strong>qualitative</strong> (heart-righteousness over externalism); <strong>eschatological</strong> (kingdom-righteousness inaugurated in Jesus). Most contemporary commentators blend (2) and (3).</p> | |
| <h4>4. "<span class="gk">Teleios</span>" vs. Hebrew <em>tamim</em></h4> | |
| <p>Greek <span class="gk">teleios</span> translates Hebrew <span class="heb">תָּמִים</span> (<em>tāmîm</em>) in the LXX — <strong>integrity, wholeness, undivided devotion</strong>, not Greek metaphysical flawlessness. The call is to wholehearted, undivided love — especially in context, love that does not discriminate.</p> | |
| <!-- ============================================================ --> | |
| <!-- PART II: 5:1-32 --> | |
| <!-- ============================================================ --> | |
| <h2 id="part-2"><span class="num">Part II</span>The Chapter: 5:1–32</h2> | |
| <p class="lede">Setting, Beatitudes, salt and light, the law-fulfillment thesis, and the first three antitheses.</p> | |
| <h3>Setting (5:1–2)</h3> | |
| <p><span class="verse-label">5:1–2</span> "Seeing the crowds, he went up on the mountain <span class="gk">(anebē eis to oros)</span>, and when he sat down <span class="gk">(kathisantos autou)</span>, his disciples came to him. And he opened his mouth <span class="gk">(anoixas to stoma autou)</span> and taught them."</p> | |
| <p>Three loaded details:</p> | |
| <ul> | |
| <li><strong>Mountain</strong> — verbatim LXX Moses-ascent vocabulary. Franz Delitzsch called this "the Sinai of the New Testament."</li> | |
| <li><strong>Sitting</strong> — formal rabbinic teaching posture. Matthew uses it again at 23:2 ("the scribes and Pharisees sit on Moses' seat").</li> | |
| <li><strong>"Opened his mouth"</strong> — a Semitism (Job 3:1; Dan 10:16; Acts 8:35) marking solemn, revelatory speech.</li> | |
| </ul> | |
| <p><strong>Audience structure.</strong> Jesus <em>sees</em> the crowds, withdraws upward, teaches the disciples — but at 7:28 the crowds are astonished listeners. Matthew stages a <strong>concentric audience</strong>: inner circle of disciples, outer circle of overhearing crowd. The Sermon is discipleship instruction the world overhears.</p> | |
| <h3 id="beatitudes">The Beatitudes (5:3–12)</h3> | |
| <p><span class="gk">Makarios</span> is not "happy" in the modern sense. It is a <strong>declarative pronouncement of divine favor</strong>. The Hebrew substrate is <span class="heb">אַשְׁרֵי</span> <em>ʾašrê</em>, found 44× in the Psalms (Ps 1:1; 32:1). Hagner and France insist the Matthean usage is covenantal-eschatological — not emotion, but grace-announcement.</p> | |
| <p>The eight beatitudes (5:3–10) form a self-contained unit via the <strong>inclusio "theirs is the kingdom of heaven"</strong> at verses 3 and 10, both in the present tense. Inside this frame, the middle beatitudes use future-tense promises. The effect:</p> | |
| <div class="pullquote">Already, the kingdom belongs to them. Not yet, its full promises arrive.</div> | |
| <h4>Structure — two stanzas of four</h4> | |
| <table> | |
| <thead><tr><th>Stanza</th><th>Verses</th><th>Character</th></tr></thead> | |
| <tbody> | |
| <tr><td>I</td><td>3–6</td><td>Receptive / passive (poor, mourning, meek, hungering for righteousness)</td></tr> | |
| <tr><td>II</td><td>7–10</td><td>Active / outward (merciful, pure, peacemaking, persecuted for righteousness)</td></tr> | |
| </tbody> | |
| </table> | |
| <p>Both stanzas have exactly <strong>36 Greek words</strong> (Luz). Stanza I's four beatitudes all open with Greek <strong>π</strong> — <span class="gk">ptōchoi, penthountes, praeis, peinōntes</span>. Verses 4 and 10 both contain <span class="gk">dikaiosynē</span> ("righteousness"), pre-keying the 5:20/5:48 inclusio that frames the whole chapter.</p> | |
| <h4>Select verses</h4> | |
| <p><span class="verse-label">5:3</span> <strong>"Blessed are the poor in spirit"</strong> — <span class="gk">hoi ptōchoi tō pneumati</span>. <span class="gk">Ptōchos</span> denotes <em>destitution</em>, not working poverty. The dative points to the <em>ʿanawim</em> — the pious remnant of Isa 61:1 who depend utterly on YHWH. <strong>1QM 14:7</strong> uses the exact Hebrew counterpart.</p> | |
| <p><span class="verse-label">5:5</span> <strong>"The meek shall inherit the earth"</strong> — direct quotation of Psalm 37:11 LXX. <span class="gk">Praus</span> is controlled strength (used of broken horses, and of Moses in Num 12:3). Not weakness.</p> | |
| <p><span class="verse-label">5:6</span> <strong>"Hunger and thirst for righteousness"</strong> — <span class="gk">dikaiosynē</span> is a controlling Matthean theme (7× vs. 1× in Mark). Ethical uprightness (France, Luz, Hagner) or eschatological vindication (older Reformed)? Most modern critical scholars lean ethical.</p> | |
| <p><span class="verse-label">5:9</span> <strong>"Peacemakers"</strong> — <span class="gk">eirēnopoios</span>. In secular Greek, the title was used of <em>emperors</em> claiming to establish the Pax Romana. Jesus transfers it to a different kind of peacemaker. Under Roman occupation, calling peacemakers (rather than Zealots) "sons of God" was politically pointed.</p> | |
| <h4>The ninth beatitude (5:11–12)</h4> | |
| <p>Shift from third person to <strong>second person</strong>: "Blessed are <em>you</em>…" Rhetorical hinge. Matthew draws the hearer inside the portrait, preparing for 5:13 ("<em>You</em> are the salt…"). The beatitude personalizes the persecution theme of verse 10 and links the community to Israel's persecuted prophets (cf. 23:29–36).</p> | |
| <h3 id="salt-light">Salt and Light (5:13–16)</h3> | |
| <p><span class="verse-label">5:13</span> <strong>"You are the salt of the earth."</strong> Ancient salt had many uses:</p> | |
| <ul> | |
| <li><strong>Preservative</strong> — restraining decay in meat and fish (primary use)</li> | |
| <li><strong>Seasoning</strong> — flavoring (Job 6:6)</li> | |
| <li><strong>Covenant symbol</strong> — "covenant of salt" (Num 18:19; Lev 2:13; 2 Chr 13:5)</li> | |
| <li><strong>Purification</strong> — 2 Kgs 2:20–22</li> | |
| <li><strong>Fertilizer</strong> — small amounts on manure piles</li> | |
| <li><strong>Judgment/sterility</strong> — salting ruined Shechem (Judg 9:45)</li> | |
| </ul> | |
| <div class="callout"> | |
| <div class="label">How does salt "lose its saltiness"?</div> | |
| <p>Pure sodium chloride is chemically stable — so how did commentators make sense of <span class="gk">mōranthē</span> ("become foolish/tasteless")? Salt from the Dead Sea marshes was <strong>impure</strong>. When moisture leached out the NaCl, a gypsum-mineral residue remained that looked like salt but had lost flavor. The Mishnah mentions such residue being sprinkled on the Temple ramp for traction — exactly the "trodden under foot of men" Jesus mentions. There is a wordplay: <span class="gk">mōranthē</span> shares a root with <span class="gk">mōros</span> ("fool"). Salt "fooled" is salt that has become useless.</p> | |
| </div> | |
| <p><span class="verse-label">5:14–16</span> <strong>"You are the light of the world."</strong> Light draws on <strong>Isa 42:6 and 49:6</strong> — the Servant as "a light for the nations." Jesus elsewhere claims this role for himself (John 8:12); here he transfers it to disciples. They <em>embody Israel's mission</em>.</p> | |
| <p><strong>City on a hill.</strong> Three readings: generic urban geography; Jerusalem/Zion (Isa 2:2–3); or Sepphoris — the prominent hilltop city near Nazareth, visible to Galilean audiences.</p> | |
| <p>Verse 16's purpose clause is crucial: good works are not for the disciples' glory but so observers "give glory to <em>your Father who is in heaven</em>" — Matthew's signature phrase (appearing 20 times).</p> | |
| <h3 id="law-thesis">The Law-Fulfillment Thesis (5:17–20)</h3> | |
| <p>This four-verse block is the <strong>programmatic hinge</strong> of the entire Sermon.</p> | |
| <p><span class="verse-label">5:17</span> "Do not think I have come to abolish <span class="gk">(katalysai)</span> the Law or the Prophets; I have not come to abolish them but to fulfill <span class="gk">(plērōsai)</span>."</p> | |
| <p>The verb <span class="gk">plēroō</span> is semantically dense. Five major options, detailed in Part I. The dominant modern reading: <strong>Jesus brings Torah to its intended eschatological goal</strong>. This preserves Torah's continuity (against Marcion and antinomianism) while allowing the trajectory-based transformations that follow.</p> | |
| <p><span class="verse-label">5:18</span> <strong>"Not an iota or a dot will pass."</strong></p> | |
| <ul> | |
| <li><span class="gk">Iōta</span> = Hebrew <span class="heb">י</span> <em>yod</em>, the smallest letter</li> | |
| <li><span class="gk">Keraia</span> ("little horn") = the small projecting strokes distinguishing similar letters (dalet <span class="heb">ד</span> / resh <span class="heb">ר</span>; beth <span class="heb">ב</span> / kaph <span class="heb">כ</span>)</li> | |
| </ul> | |
| <p><strong>Rabbinic parallel</strong>: b. Menaḥot 29a — R. Judah says changing one letter of Torah would destroy the world. A midrash has the letter <em>yod</em> complaining to God when Moses changes Sarai's name to Sarah.</p> | |
| <p><span class="verse-label">5:20</span> <strong>"Unless your righteousness exceeds that of the scribes and Pharisees…"</strong> The double comparative <span class="gk">perisseusē pleion</span> is emphatic. This is the <strong>launch-pad</strong> for the six antitheses. Its demand for exceeding righteousness is what 5:21–48 concretizes, and it forms an inclusio with 5:48.</p> | |
| <h3 id="ant-1-3">The First Three Antitheses (5:21–32)</h3> | |
| <h4>1. Murder and anger (5:21–26)</h4> | |
| <p><strong>The antithesis formula</strong> appears for the first time: <span class="gk">ēkousate hoti errethē … egō de legō hymin</span> ("You have heard that it was said … but I say to you"). The emphatic <span class="gk">egō</span> claims an authority beyond the scribal citation of tradition.</p> | |
| <p>Jesus traces murder back to its root: <strong>anger, insult, contempt</strong>. The triadic escalation:</p> | |
| <ol> | |
| <li><strong>Angry with his brother</strong> → liable to <span class="gk">tē krisei</span> (local court of 23 elders). Some manuscripts add <span class="gk">eikē</span> ("without cause"), almost certainly a later softening.</li> | |
| <li><strong>"Raca"</strong> (<span class="gk">rhaka</span>) — transliterated Aramaic "empty-head, numbskull." Liable to the Sanhedrin.</li> | |
| <li><strong>"You fool"</strong> (<span class="gk">mōre</span>) — semantically equivalent to Hebrew <em>nābāl</em>, a moral-spiritual reprobation. Liable to the <strong>Gehenna of fire</strong>.</li> | |
| </ol> | |
| <p><strong>Gehenna</strong> = Hebrew <em>gê ben-Hinnōm</em>, the Valley of the Son of Hinnom southwest of Jerusalem, where children had been offered to Molech (2 Kgs 23:10). Josiah defiled the site; apocalyptic tradition (1 Enoch 27; 54; 2 Esdras 7:36) named it as the place of final judgment. The popular "perpetual garbage fire" claim is unattested in pre-modern sources.</p> | |
| <p>The section's application (vv. 23–26) shifts from Temple ("leave your gift at the altar") to courtroom, stressing the <strong>urgency</strong> of reconciliation.</p> | |
| <h4>2. Adultery and lust (5:27–30)</h4> | |
| <p><span class="verse-label">5:28</span> "Whoever looks at a woman <span class="gk">pros to epithymēsai autēn</span> has already committed adultery with her in his heart."</p> | |
| <div class="callout"> | |
| <div class="label">Critical construction</div> | |
| <p><span class="gk">Pros to</span> + articular infinitive expresses <strong>purpose</strong>: "in order to lust." Not the involuntary flicker of attraction but the <em>deliberate, cultivated gaze aimed at desire</em>. Ellicott: "not the passing glance... but the continued gaze by which the impulse is deliberately cherished till it becomes a passion." France insists this distinction is crucial.</p> | |
| </div> | |
| <p>The verb <span class="gk">epithymeō</span> is the same verb used in LXX Exod 20:17 / Deut 5:21 for "<strong>covet</strong> your neighbor's wife." Matthew deliberately invokes the <strong>tenth commandment</strong> as much as the seventh — and places responsibility squarely on the male, an important ethical move in a culture habitually blaming women for male sin.</p> | |
| <p>The hyperbole of plucking out the eye and cutting off the hand is classic Semitic intensification — France, Hagner, and Davies & Allison unanimously reject literal self-mutilation (Origen's self-castration was regarded as a misreading even by the early church).</p> | |
| <h4>3. Divorce (5:31–32)</h4> | |
| <p>Jesus paraphrases Deut 24:1, which <em>presupposes</em> rather than <em>prescribes</em> divorce, placing protections around an existing practice. The operative rabbinic context is <strong>m. Gittin 9:10</strong>, the Hillel–Shammai debate over <span class="heb">עֶרְוַת דָּבָר</span> <em>ʿerwat dābār</em> ("unseemly thing") in Deuteronomy:</p> | |
| <ul> | |
| <li><strong>Shammai</strong>: divorce only for sexual impropriety (stress on <em>ʿerwāh</em>, nakedness)</li> | |
| <li><strong>Hillel</strong>: divorce for any cause — "even if she spoiled his dish" (stress on <em>dābār</em>, any matter)</li> | |
| <li><strong>R. Akiva</strong>: "Even if he found another fairer than she"</li> | |
| </ul> | |
| <p>By Jesus' day, Hillel was dominant. Jesus aligns closely with Shammai but goes <em>farther</em> in protective intent toward women.</p> | |
| <div class="callout"> | |
| <div class="label">The <em>porneia</em> exception — four major readings</div> | |
| <ol> | |
| <li><strong>Adultery</strong> (Luther, Calvin, Keener)</li> | |
| <li><strong>Broad sexual immorality</strong> (Osborne; most current evangelical)</li> | |
| <li><strong>Incest</strong> (Fitzmyer) — <span class="gk">porneia</span> translates <em>zenut</em> in Damascus Document for forbidden kinship</li> | |
| <li><strong>Betrothal unchastity</strong> (Isaksson) — modeled on Matt 1:18–19, Joseph contemplating divorce of Mary</li> | |
| </ol> | |
| </div> | |
| <p><strong>The social logic.</strong> "Makes her commit adultery" (<span class="gk">poiei autēn moicheuthēnai</span>) is stunning: the one-sided male power to divorce is not presented as a husband's prerogative but as <em>an injury to the woman</em>. A divorced woman in first-century Palestine — economically dependent, socially vulnerable — would need to remarry to survive, and on Jesus' teaching that second marriage is itself adulterous. <strong>Jesus' stricter view is the woman-protecting view</strong> against Hillelite laxity.</p> | |
| <!-- ============================================================ --> | |
| <!-- PART III: DEEP DIVE ON 5:33-48 --> | |
| <!-- ============================================================ --> | |
| <div class="focus"> | |
| <div class="label">★ Deep Dive ★</div> | |
| <h2 id="part-3" style="border-top: none; margin-top: 0; padding-top: 0;"><span class="num">Part III</span>5:33–48 — The Final Three Antitheses and the Call to Perfection</h2> | |
| <p class="lede">Oaths, non-retaliation, enemy-love. Each dismantles a different mechanism of self-protection.</p> | |
| <p>Matthew 5:33–48 comprises the <strong>fourth, fifth, and sixth</strong> antitheses, climaxing in the call to be <span class="gk">teleios</span>. The section is bracketed by an inclusio running from 5:20 ("unless your <span class="gk">dikaiosynē</span> exceeds") to 5:48 ("be <span class="gk">teleios</span>"). The perfection of 5:48 is not a separate topic — it is the superabundant righteousness of 5:20 concretely realized.</p> | |
| <div class="callout" style="background: #fff;"> | |
| <div class="label">Stassen's transforming-initiatives framework</div> | |
| <p>Glen Stassen (JBL 122, 2003) reframes each antithesis as a <strong>three-part unit</strong>, not a two-part opposition:</p> | |
| <ol> | |
| <li><strong>Traditional piety</strong> — the received teaching</li> | |
| <li><strong>Vicious cycle</strong> — diagnosis of what goes wrong</li> | |
| <li><strong>Transforming initiative</strong> — a positive imperative of deliverance</li> | |
| </ol> | |
| <p>This recasts Jesus' teaching as <em>practical guidance</em>, not impossible ideal.</p> | |
| </div> | |
| <h3 id="oaths">Fourth antithesis — Oaths (5:33–37)</h3> | |
| <h4>Greek and morphology</h4> | |
| <ul> | |
| <li><span class="gk">epiorkeō</span> — "to forswear, perjure oneself"</li> | |
| <li><span class="gk">horkos</span> — binding oath</li> | |
| <li><span class="gk">omnyō</span> — "to swear" (LXX translates Hebrew <em>nišbaʿ</em>, <span class="heb">נשׁבע</span>)</li> | |
| <li><span class="gk">holōs</span> — "at all, wholly"; the decisive adverb for the absolutist reading</li> | |
| <li><span class="gk">ek tou ponērou</span> — "from evil" / "from the Evil One"; gender-ambiguous</li> | |
| </ul> | |
| <h4>OT background</h4> | |
| <p>Jesus' citation conflates three Torah strands:</p> | |
| <ul> | |
| <li><strong>Lev 19:12</strong> — "You shall not swear falsely by my name"</li> | |
| <li><strong>Num 30:2</strong> — binding vows must not be broken</li> | |
| <li><strong>Deut 23:21–23</strong> — voluntary vows must be fulfilled</li> | |
| </ul> | |
| <p>Torah <em>assumes and regulates</em> oath-taking (Deut 6:13 even commands swearing by Yahweh's name). Jesus' "do not swear at all" stands in tension with Torah unless read as intensification: the <em>telos</em> of the oath-laws is truth-telling, which Jesus radicalizes by eliminating the need for oaths altogether.</p> | |
| <h4>Second Temple oath-culture</h4> | |
| <p>The Mishnah's entire tractates <strong>Shevuot</strong> (oaths) and <strong>Nedarim</strong> (vows) catalogue elaborate casuistry. M. Nedarim 3:1 lists "four types of vows sages declared not binding." To protect the divine name, Jews developed <span class="gk">kinnuyim</span> — <em>surrogate objects by which to swear</em> — precisely the loophole Jesus condemns by enumerating "heaven… earth… Jerusalem… your head."</p> | |
| <blockquote> | |
| Any word of theirs has more force than an oath; swearing they avoid, regarding it as worse than perjury, for they say that one who is not believed without an appeal to God stands condemned already. | |
| <cite>Josephus, <em>Jewish War</em> 2.135, on the Essenes</cite> | |
| </blockquote> | |
| <p><strong>Philo</strong> (<em>De Specialibus Legibus</em> 2.2–9) similarly urges silence over swearing: the best man makes truthfulness itself his oath. <strong>2 Enoch 49:1–2</strong>: "There is no oath in me, nor any unrighteousness, but only truth."</p> | |
| <p>Jesus stands within an observable Second Temple stream that valorized non-oath truthfulness — but radicalizes it by grounding the prohibition in <strong>God's sovereign ownership of heaven, earth, Jerusalem, and the human body</strong>.</p> | |
| <h4>Why every surrogate fails (vv. 34–36)</h4> | |
| <p>Verses 34–36 systematically dismantle <span class="gk">kinnuyim</span>:</p> | |
| <ul> | |
| <li><strong>Heaven</strong> — God's throne (Isa 66:1)</li> | |
| <li><strong>Earth</strong> — his footstool (Isa 66:1)</li> | |
| <li><strong>Jerusalem</strong> — the city of the great King (Ps 48:2)</li> | |
| <li><strong>Your head</strong> — not yours; you cannot change one hair's color</li> | |
| </ul> | |
| <p>The progression runs from obviously divine to seemingly personal, showing that <strong>no sphere of human life lies outside divine ownership</strong>.</p> | |
| <h4>"Let your yes be yes" — and James 5:12</h4> | |
| <p>Verse 37's doubled <span class="gk">nai nai / ou ou</span> is commonly read as "let your 'yes' be a yes and your 'no' be a no" — truthful speech requires no intensifier.</p> | |
| <p><strong>James 5:12</strong> is a near-verbatim parallel: "Above all, my brothers, do not swear, either by heaven or by earth or by any other oath, but let your 'yes' be yes and your 'no' be no, so that you may not fall under condemnation." The parallel attests the logion's antiquity in early Christian paraenesis, independent of Matthew's redaction.</p> | |
| <h4><span class="gk">Ek tou ponērou</span>: neuter or masculine?</h4> | |
| <p>Grammatically ambiguous. <strong>Meyer</strong>: masculine — "how energetic if <span class="gk">Ho Ponēros</span> is intended!" Chrysostom agrees. <strong>Bengel</strong>: neuter, "evil in the abstract." Davies & Allison lean masculine given Matthean usage (6:13; 13:19, 38). The Evil One as master deceiver (John 8:44: "a liar, and the father of lies").</p> | |
| <h4>Absolute or qualified?</h4> | |
| <ul> | |
| <li><strong>Absolutist</strong> (Anabaptist, Mennonite, Quaker): Schleitheim Confession (1527); George Fox secured the "affirmation" option in Anglo-American law. Reads <span class="gk">mē omosai holōs</span> as categorical.</li> | |
| <li><strong>Qualified</strong> (Calvin, Westminster Confession 22.1–2, Catholic, Lutheran): limits to casual or casuistic swearing; permits judicial oaths. Appeals to Paul's own oaths (Rom 1:9; 2 Cor 1:23; Gal 1:20) and God's oaths (Heb 6:13–18).</li> | |
| </ul> | |
| <h3 id="retaliation">Fifth antithesis — Retaliation (5:38–42)</h3> | |
| <h4><em>Lex talionis</em> as a <em>limiting</em> principle</h4> | |
| <p>Jesus' citation — "eye for eye, tooth for tooth" — conflates <strong>Exod 21:24, Lev 24:20, Deut 19:21</strong>. Commentators are unanimous that in its Torah context the principle was a <strong>judicial restraint on blood-feud escalation</strong>, not a license for personal vengeance.</p> | |
| <blockquote> | |
| As originally given, it was a check on the "wild justice" of revenge. It was, in its essence, a limit in both directions. | |
| <cite>Ellicott, on Matthew 5:38</cite> | |
| </blockquote> | |
| <blockquote> | |
| Designed to take vengeance out of the hands of private persons, and commit it to the magistrate. | |
| <cite>Barnes, on Matthew 5:38</cite> | |
| </blockquote> | |
| <p>By Jesus' day, rabbinic courts had commuted the literal talion to monetary damages (m. Bava Qamma 8:1). The Pharisaic distortion Jesus rebuts is the <strong>transfer of the judicial principle from bench to street</strong>, legitimizing personal revenge.</p> | |
| <h4>Greek vocabulary</h4> | |
| <ul> | |
| <li><span class="gk">antistēnai</span> — "to stand against, oppose, resist." Classical military term (Thucydides). James 4:7 commands believers to <span class="gk">antistēte</span> the devil, so the verb is morally neutral. <strong>Levine and Brettler</strong> argue it specifically refers to <em>armed or violent</em> resistance.</li> | |
| <li><span class="gk">rapizei</span> — "to smite with the palm of the hand"</li> | |
| <li><span class="gk">chitōn</span> — inner undergarment</li> | |
| <li><span class="gk">himation</span> — outer cloak (Exod 22:26–27 forbids retaining a debtor's overnight)</li> | |
| <li><span class="gk">angareuei</span> — Persian-origin loanword for royal courier service; under Rome, compulsory civilian labor — exactly what Simon of Cyrene undergoes (27:32)</li> | |
| </ul> | |
| <div class="callout"> | |
| <div class="label">Walter Wink's "Third Way" reading</div> | |
| <p>Wink argues the four illustrations are not passive submission but <strong>nonviolent exposure of domination systems</strong>:</p> | |
| <p><strong>1. Right cheek backhand.</strong> To hit a right cheek with the (only acceptable) right hand requires a <em>backhand</em>. In Mediterranean honor-culture, backhanding was a specifically subordinating gesture — masters backhand slaves, husbands wives, Romans Jews. Turning the left cheek forces a fist-blow from an equal — the very thing the superior refuses to grant. Rabbinic law treated the backhand as twice as offensive as a frontal slap.</p> | |
| <p><strong>2. Tunic + cloak in debt court.</strong> Giving the inner <em>tunic</em> on top of the outer <em>cloak</em> the creditor already sued for leaves the debtor <em>naked</em>. In Jewish culture, the shame of nakedness falls on the <em>viewer</em> (Gen 9:22–23). "There stands the creditor covered in shame." Guerrilla theater exposing the debt economy's cruelty.</p> | |
| <p><strong>3. Second mile.</strong> Roman code strictly limited <em>angareia</em> to one mile; compelling a second violated discipline. Cheerfully continuing creates strategic confusion — the soldier risks centurion reprimand.</p> | |
| <p><strong>4. Give to beggars and borrowers.</strong> Unconditional open-handedness refusing scarcity-logic and transactional exchange.</p> | |
| <p>Wink's core principle: <em>Do not react violently to evil. Do not counter evil in kind. Do not let evil dictate the terms of your opposition.</em> The illustrations model a "third way" — neither fight nor flight.</p> | |
| </div> | |
| <h4>Personal vs. societal ethics — six traditions</h4> | |
| <ol> | |
| <li><strong>Luther's two kingdoms</strong> — private person absolutely bound; officeholder must defend neighbor by sword.</li> | |
| <li><strong>Aquinas, Catholic moral theology</strong> — distinguishes personal forbearance from just-war.</li> | |
| <li><strong>Schweitzer's interim ethic</strong> — impossible demand for the pre-Parousia interval.</li> | |
| <li><strong>Niebuhr</strong> — "impossible possibility"; transcendent norm that relativizes but doesn't directly prescribe social policy.</li> | |
| <li><strong>Anabaptist / Yoder / Hauerwas</strong> — concrete politics of the church. "Nonviolence isn't passive, it's vulnerable."</li> | |
| <li><strong>Tolstoy → Gandhi → King</strong> — direct political application. King, trained in Boston personalism and <em>satyāgraha</em>, invoked 5:38–44 as warrant for nonviolent direct action.</li> | |
| </ol> | |
| <h3 id="enemies">Sixth antithesis — Love of enemies (5:43–47)</h3> | |
| <h4>"Love your neighbor" — Leviticus 19:18</h4> | |
| <p>The first half of 5:43 quotes Lev 19:18 verbatim. In Leviticus, "neighbor" (<em>rēaʿ</em>) is a covenant member, though v. 34 extends love to the <em>gēr</em> (resident alien). Luke's Good Samaritan parable radically expands the scope.</p> | |
| <h4>"Hate your enemy" — not in the OT</h4> | |
| <p>Crucially, the second half of 5:43 — "hate your enemy" — has <strong>no Torah provenance</strong>. Ellicott: "the latter clause was a Rabbinic addition to the former." The OT had actually <em>commanded</em> love of enemies (Exod 23:4–5; Prov 24:17; 25:21; Job 31:29).</p> | |
| <div class="callout"> | |
| <div class="label">The Qumran parallel</div> | |
| <p>The closest first-century referent for "hate your enemy" is the <strong>Essene Community Rule (1QS)</strong>:</p> | |
| <blockquote style="margin: 12px 0; padding-left: 16px;"> | |
| To love all the sons of light, each according to his lot in the counsel of God, and to hate all the sons of darkness, each according to his guilt in the vengeance of God. | |
| <cite>1QS 1:9–11</cite> | |
| </blockquote> | |
| <p><strong>1QS 9:21–22</strong> directs "everlasting hatred for the men of the pit." This is sectarian dualism. Jesus' "but I say to you" thus responds to a <em>specific sectarian extrapolation</em> of Lev 19:18.</p> | |
| </div> | |
| <h4><span class="gk">Agapaō</span> — volitional love</h4> | |
| <p>The verb denotes <strong>moral, benevolent love</strong> — the deliberate willing of another's good — as distinguished from <span class="gk">phileō</span>, personal affection. Meyer: love that "separates the person of the enemy from his hostile disposition towards us."</p> | |
| <p>Textual note: the four-part form ("love / bless / do good / pray") in some later manuscripts is likely assimilation to Luke 6:27–28. The oldest Matthean text reads only <strong>"love your enemies and pray for those who persecute you."</strong></p> | |
| <h4>"Sons of your Father" and common grace</h4> | |
| <p>Verse 45's <span class="gk">genēsthe</span> is subjunctive — "show yourselves to be" such by resembling the Father. The ground is cosmic:</p> | |
| <div class="pullquote">He makes his sun rise on the evil and on the good, and sends rain on the just and on the unjust.</div> | |
| <p>This is the classical locus for Reformed <strong>common grace</strong> (Calvin, Kuyper). <strong>Seneca</strong> (<em>De Beneficiis</em>) offers a Stoic parallel: "How many are there who are unworthy of the light of day? And nevertheless the sun rises." But Jesus' framing differs crucially: not abstract cosmopolitan virtue, but <em>sons of the Father</em> — covenantal, filial, revelatory.</p> | |
| <h4>Tax collectors and Gentiles as foil</h4> | |
| <p><strong>Tax collectors</strong> (<span class="gk">telōnai</span>) — the Roman <em>publicani</em> contractors, barred from courts as witnesses, "reckoned as thieves, with murderers, and robbers" (Gill). <strong>Gentiles</strong> (<span class="gk">ethnikoi</span>) — the paradigmatic covenantal outsiders.</p> | |
| <p>The rhetoric stings: loving only those who love you makes you indistinguishable from Rome's tax-farmers and the uncircumcised. <strong>Jesus' command ruptures both the honor-shame economy and Greco-Roman <em>do ut des</em> reciprocity logic</strong>.</p> | |
| <h4>Jewish parallels</h4> | |
| <ul> | |
| <li><strong>b. Shabbat 88b</strong> — lauds "those who are insulted and do not insult back… who act from love and rejoice in suffering"</li> | |
| <li><strong>Exodus Rabbah</strong> on 23:4–5 — extends love to enemies via the command to relieve their animals</li> | |
| <li><strong>Testament of Benjamin 4:2–3</strong> — "The good man… shows mercy to all men, even though they be sinners"</li> | |
| </ul> | |
| <h4>Wright: kingdom inauguration</h4> | |
| <blockquote> | |
| Jesus' command to love your enemies was a direct assault on the Zealots' way of ushering in the kingdom. In essence, Jesus is saying the kingdom of God comes about by laying down your life, not by taking up your sword. | |
| <cite>N. T. Wright</cite> | |
| </blockquote> | |
| <p>The cross is the definitive enactment. "Father, forgive them" (Luke 23:34) <em>is</em> 5:44 in action.</p> | |
| <h3 id="perfect">5:48 — "Be perfect as your heavenly Father"</h3> | |
| <h4><span class="gk">Teleios</span> — Greek</h4> | |
| <p>From <span class="gk">telos</span> (end, goal). Thayer: "brought to its end, finished; lacking nothing necessary to completeness." HELPS: "<em>mature</em> from going through the necessary stages to reach the end-goal." Paul uses it for spiritual adulthood (1 Cor 2:6; Phil 3:15); James for whole-person integrity (1:4; 1:25; 3:2).</p> | |
| <h4><em>Tamim</em> — Hebrew</h4> | |
| <p>The LXX frequently renders <span class="heb">תָּמִים</span> <em>tāmîm</em> ("blameless, whole, unblemished") as <span class="gk">teleios</span>. The <strong>locus classicus is Deut 18:13</strong>: <em>tāmîm tihyeh ʿim YHWH ʾĕlōhêkā</em> ("You shall be blameless before the LORD your God"). Also Gen 17:1 ("Walk before me and be <em>tāmîm</em>") and Gen 6:9 (Noah was <em>tāmîm</em>).</p> | |
| <div class="pullquote">This Hebraic background subverts the Greek philosophical connotation of metaphysical flawlessness. The call is to undivided loyalty and wholehearted love.</div> | |
| <p><strong>Nolland (NIGTC)</strong>: <span class="gk">teleios</span> "has a basic meaning of 'whole/entire' and in relation to human behaviour before God points to wholeheartedness and lack of compromise."</p> | |
| <h4>Luke 6:36 — the Q parallel</h4> | |
| <p>Luke reads "Be <em>merciful</em> as your Father is merciful." Most Q-critics judge Luke's <span class="gk">oiktirmōn</span> the older form (translating Hebrew <em>raḥûm</em>, the standard divine attribute — Exod 34:6). Matthew's <span class="gk">teleios</span> is redactional, creating the 5:20/5:48 inclusio. Either way, mutually interpreting: <strong>perfection is realized as mercy</strong>.</p> | |
| <h4>Five interpretive options</h4> | |
| <ol> | |
| <li><strong>Unattainable ideal</strong> — drives hearers to grace (Niebuhr, Schweitzer, Lutheran)</li> | |
| <li><strong>Eschatological <em>telos</em></strong> — realized only at Parousia</li> | |
| <li><strong>Imitatio Dei</strong> — the Father's impartial benevolence (5:45)</li> | |
| <li><strong>Summary of the antitheses</strong> — undivided heart in every sphere</li> | |
| <li><strong>Wholeness / maturity</strong> (Hebraic <em>tamim</em>) — undivided covenantal loyalty</li> | |
| </ol> | |
| <h4>Patristic reception</h4> | |
| <p>Clement, Origen, Gregory of Nyssa, Augustine, Aquinas, Luther, and Calvin all read 5:48 through an <strong>imitatio Dei</strong> lens focused on enemy-love and Christ-conformity. Gregory of Nyssa: perfection "restores our nature." Augustine: "Perfection is found in seeing God." Luther democratized perfection beyond monastic life. <strong>Wesleyan "entire sanctification"</strong> introduced what commentators call "over-realized <span class="gk">teleios</span>-ity"; Bonhoeffer recovered the patristic reading by binding <span class="gk">teleios</span> to <em>costly grace</em>.</p> | |
| <h3>Synthesis of the three antitheses</h3> | |
| <h4>The logic of self-protection dismantled</h4> | |
| <p>The three share a structural target: <strong>the mechanisms by which the self protects itself against others</strong>.</p> | |
| <ul> | |
| <li><strong>Oaths</strong> protect the self against being disbelieved</li> | |
| <li><strong>Retaliation</strong> protects the self against injury via equivalent harm</li> | |
| <li><strong>Hatred of enemies</strong> protects the self against affective contamination and contracts the moral circle</li> | |
| </ul> | |
| <p>Jesus dismantles each: truthful speech that needs no guarantor; creative nonviolent response refusing equivalence-logic; love crossing the us/them boundary. <strong>The triad collectively dissolves the fortress-self.</strong></p> | |
| <h4>Christological fulfillment</h4> | |
| <p>Each antithesis finds embodied fulfillment in Jesus:</p> | |
| <ul> | |
| <li><strong>Oaths</strong> — before Caiaphas, plain truth (26:63–64)</li> | |
| <li><strong>Non-retaliation</strong> — the Servant who "opened not his mouth" (Isa 53:7), struck on the cheek (26:67), stripped of his <span class="gk">himation</span> (27:28, 35), whose cross was <em>angareia</em>'d through Simon of Cyrene (27:32)</li> | |
| <li><strong>Enemy love</strong> — "Father, forgive them" (Luke 23:34)</li> | |
| <li><strong>Perfection</strong> — Heb 5:9: Christ "made <span class="gk">teleios</span>" through obedient suffering</li> | |
| </ul> | |
| <div class="pullquote">The Sermon is not merely ethical demand but christological description. Jesus is the <span class="gk">teleios</span> one; the community's share in his perfection is the gift of sonship.</div> | |
| </div> | |
| <!-- end focus box --> | |
| <!-- ============================================================ --> | |
| <!-- PART IV: STRUCTURE --> | |
| <!-- ============================================================ --> | |
| <h2 id="part-4"><span class="num">Part IV</span>Rhetorical Structure</h2> | |
| <p class="lede">How the message is built — architecture, formulas, devices.</p> | |
| <h3>Macro-structure</h3> | |
| <pre><code>5:1–2 Setting (mountain, sitting, "opened his mouth") | |
| 5:3–12 BEATITUDES (gift: description of the blessed) | |
| 5:13–16 SALT AND LIGHT (identity hinge: you-are) | |
| 5:17–20 PROGRAMMATIC THESIS (not abolish but fulfill) | |
| 5:21–32 TRIAD A — Decalogue (murder / adultery / divorce) | |
| 5:33–48 TRIAD B — Holiness Code (oaths / retaliation / enemies) | |
| 5:48 CLIMAX: "You therefore shall be teleios..."</code></pre> | |
| <h3>The master inclusio: 5:20 ↔ 5:48</h3> | |
| <p>Two terminal statements bracket the antitheses:</p> | |
| <ul> | |
| <li><strong>5:20</strong> — "unless your <em>righteousness</em> exceeds that of the scribes and Pharisees…"</li> | |
| <li><strong>5:48</strong> — "You therefore shall be <em>perfect</em> as your heavenly Father is perfect."</li> | |
| </ul> | |
| <p>The antitheses are the <strong>content</strong> of that "exceeding righteousness." 5:48 is the summative definition of what 5:20 looks like concretely.</p> | |
| <h3>Concentric widening of moral scope</h3> | |
| <pre><code>brother (21–26) → spouse (27–32) → speech-partners (33–37) | |
| → personal aggressor (38–42) → enemy/persecutor (43–47) → God (48)</code></pre> | |
| <p>The ethic begins with the nearest circle (family) and ends with God Himself as the pattern. The hostile <em>enemy</em> is the <em>penultimate</em> outward step; identification with the Father's indiscriminate love is the final inward turn.</p> | |
| <h3>Beatitudes — structural artistry in miniature</h3> | |
| <h4>Inclusio on "kingdom of heaven"</h4> | |
| <p>Verses 3 and 10 share the identical present-tense apodosis "for theirs <em>is</em> the kingdom of heaven," framing middle beatitudes in the future tense. A textbook inclusio: present "already" frames future "not-yets."</p> | |
| <h4>4+4 arrangement</h4> | |
| <table> | |
| <thead><tr><th>Stanza</th><th>Beatitudes</th><th>Character</th></tr></thead> | |
| <tbody> | |
| <tr><td>I (3–6)</td><td>poor / mourn / meek / hunger for righteousness</td><td>receptive, passive, lacking</td></tr> | |
| <tr><td>II (7–10)</td><td>merciful / pure / peacemaker / persecuted for righteousness</td><td>active, outward, costly</td></tr> | |
| </tbody> | |
| </table> | |
| <p>Observations:</p> | |
| <ul> | |
| <li>Each stanza = <strong>exactly 36 Greek words</strong> (Luz)</li> | |
| <li>First four open with Greek <strong>π</strong> — phonic parallelism (<span class="gk">ptōchoi, penthountes, praeis, peinōntes</span>)</li> | |
| <li>Verses 6 and 10 both contain <span class="gk">dikaiosynē</span> — mid-point and end-point marker pre-keying 5:20/5:48</li> | |
| </ul> | |
| <h3>The antithesis formula — variation</h3> | |
| <table> | |
| <thead><tr><th>#</th><th>Verse</th><th>Opening formula</th><th>Form</th></tr></thead> | |
| <tbody> | |
| <tr><td>1</td><td>5:21</td><td><span class="gk">Ēkousate hoti errethē <strong>tois archaiois</strong></span></td><td><strong>FULL</strong></td></tr> | |
| <tr><td>2</td><td>5:27</td><td><span class="gk">Ēkousate hoti errethē</span></td><td>short</td></tr> | |
| <tr><td>3</td><td>5:31</td><td><span class="gk">Errethē de</span></td><td>shortest</td></tr> | |
| <tr><td>4</td><td>5:33</td><td><span class="gk"><strong>Palin</strong> ēkousate hoti errethē <strong>tois archaiois</strong></span></td><td><strong>FULL</strong></td></tr> | |
| <tr><td>5</td><td>5:38</td><td><span class="gk">Ēkousate hoti errethē</span></td><td>short</td></tr> | |
| <tr><td>6</td><td>5:43</td><td><span class="gk">Ēkousate hoti errethē</span></td><td>short</td></tr> | |
| </tbody> | |
| </table> | |
| <p>Only antitheses <strong>1 and 4</strong> use the full formula. Antithesis <strong>4 alone</strong> is introduced by <span class="gk">palin</span> ("again") — a resumption-marker signaling a new block. <strong>The editorial signal is unmistakable: 5:21 opens Triad A; 5:33 opens Triad B.</strong></p> | |
| <h3>3+3 Triads — Decalogue, then Holiness Code</h3> | |
| <table> | |
| <thead><tr><th>Triad</th><th>Antithesis</th><th>Torah source</th></tr></thead> | |
| <tbody> | |
| <tr><td rowspan="3"><strong>A: Decalogue</strong></td><td>1. Murder (5:21–26)</td><td>Exod 20:13 / Deut 5:17</td></tr> | |
| <tr><td>2. Adultery (5:27–30)</td><td>Exod 20:14 / Deut 5:18</td></tr> | |
| <tr><td>3. Divorce (5:31–32)</td><td>Deut 24:1 (Decalogue-adjacent extension)</td></tr> | |
| <tr><td rowspan="3"><strong>B: Holiness Code</strong></td><td>4. Oaths (5:33–37)</td><td>Lev 19:12 + Num 30:2</td></tr> | |
| <tr><td>5. Retaliation (5:38–42)</td><td>Exod 21:24; Lev 24:20; Deut 19:21</td></tr> | |
| <tr><td>6. Enemies (5:43–48)</td><td>Lev 19:18 + tradition</td></tr> | |
| </tbody> | |
| </table> | |
| <p>Matthew's ordering <strong>recapitulates the structure of Torah itself</strong>, moving from Decalogue to Holiness Code to <em>imitatio Dei</em>.</p> | |
| <h3>Rhetorical devices</h3> | |
| <table> | |
| <thead><tr><th>Device</th><th>Example</th><th>Function</th></tr></thead> | |
| <tbody> | |
| <tr><td><strong>Makarism</strong></td><td>5:3–11</td><td>Proclaims new order</td></tr> | |
| <tr><td><strong>Inclusio</strong></td><td>"kingdom" 3↔10; "righteousness/perfect" 20↔48</td><td>Marks structural units</td></tr> | |
| <tr><td><strong>Antithesis formula</strong></td><td>"You have heard… but I say" ×6</td><td>Macro-parallelism + authority claim</td></tr> | |
| <tr><td><strong>Hyperbole</strong></td><td>"pluck out your eye" (29); "not one iota" (18)</td><td>Shock; reveal severity</td></tr> | |
| <tr><td><strong>Concrete imagery</strong></td><td>salt, lamp, altar, court, cheek, cloak, mile, sun, rain</td><td>Grounds abstract ethics</td></tr> | |
| <tr><td><strong>Qal va-chomer</strong></td><td>"what more are you doing?" (47)</td><td>Light-to-heavy inference</td></tr> | |
| <tr><td><strong>Moving inward</strong></td><td>murder→anger; adultery→lust; oath→truth</td><td>From act to heart</td></tr> | |
| <tr><td><strong>Intensification series</strong></td><td>angry → raka → fool → judgment → Gehenna</td><td>Escalating ladder</td></tr> | |
| <tr><td><strong>"I say to you"</strong></td><td>18, 20, 22, 28, 32, 34, 39, 44</td><td>Prophetic authority</td></tr> | |
| <tr><td><strong>Alliteration</strong></td><td>Greek π-onset of first four beatitudes</td><td>Aural memorability</td></tr> | |
| </tbody> | |
| </table> | |
| <h3>New-Moses typology</h3> | |
| <p>The setting is not decorative. Matthew layers Mosaic echoes:</p> | |
| <ul> | |
| <li><strong>Mountain</strong> — <span class="gk">to oros</span> with definite article</li> | |
| <li><strong>Sitting</strong> — rabbinic teaching posture; later "seat of Moses"</li> | |
| <li><strong>"Opened his mouth"</strong> — Semitic solemnity formula</li> | |
| <li><strong>"But I say to you"</strong> — where Moses says "thus says the LORD," Jesus claims first-person authority</li> | |
| <li><strong>Six antitheses</strong> — function like a new Decalogue catalogue</li> | |
| <li><strong>"Be <span class="gk">teleios</span>"</strong> — echoes Deut 18:13, but with the Father as exemplar rather than lawgiver</li> | |
| </ul> | |
| <p><strong>Dale Allison</strong>: Matthew doesn't equate Jesus with Moses — he <em>supersedes</em> Moses by typology. A greater than Moses (cf. 12:6, 41–42) is now on a greater mountain.</p> | |
| <!-- ============================================================ --> | |
| <!-- PART V: SYNTHESIS --> | |
| <!-- ============================================================ --> | |
| <h2 id="part-5"><span class="num">Part V</span>Synthesis</h2> | |
| <p class="lede">Five principles governing how Matthew 5 is built.</p> | |
| <h4>1. Gift then call (indicative → imperative)</h4> | |
| <p>5:3–12 declares the disciple <em>blessed</em>. 5:13–16 declares the disciple <em>to be</em> salt and light. 5:17–48 commands the disciple <em>to do</em> the righteousness fitting this identity. <strong>The call is never prior to the gift.</strong> Matthew stages grace before ethics.</p> | |
| <h4>2. Identity then ethics (being → doing)</h4> | |
| <p>Salt-and-light is the grammatical hinge — the only place where pure <em>being</em> language appears. The antitheses are not a burden imposed on a neutral self but the <strong>expression of who the disciple already is</strong>.</p> | |
| <h4>3. Outside-in to inside-out</h4> | |
| <p>The antitheses systematically relocate moral gravity from <em>observable act</em> to <em>heart-disposition</em>: murder → anger; adultery → lust; oath → truthful speech. Matthew's signature ethical move.</p> | |
| <h4>4. Structured intensification</h4> | |
| <p>The six antitheses trace a clear arc:</p> | |
| <ul> | |
| <li>Triad A deepens commandments against one's <strong>intimates</strong> — grounded in the Decalogue</li> | |
| <li>Triad B expands commandments regarding <strong>social contracts, retaliation, and enemies</strong> — grounded in the Holiness Code</li> | |
| <li>Series ends with imitation of the Father (5:45, 48): <strong>the horizon of ethics is the character of God</strong></li> | |
| </ul> | |
| <h4>5. Inclusios lock it together</h4> | |
| <ul> | |
| <li>3 ↔ 10: kingdom of heaven (beatitudes frame)</li> | |
| <li>17 ↔ 7:12: law and prophets (sermon-body frame)</li> | |
| <li><strong>20 ↔ 48: righteousness/teleios (antitheses frame, chapter capstone)</strong></li> | |
| </ul> | |
| <div class="pullquote">The "exceeding righteousness" of 5:20 is, concretely, the <span class="gk">teleios</span>-love-of-the-Father exhibited in 5:48. Everything between is its demonstration.</div> | |
| <h4>Closing</h4> | |
| <p>On the mountain, seated, with authoritative <span class="gk">egō de legō hymin</span>, Jesus takes into his own mouth words once prefaced "thus says the LORD." The righteousness required for the kingdom has a voice, and it is Jesus's. Matthew 5's structure is, finally, <strong>christological</strong> — the architecture exists to display the Son.</p> | |
| <p>As <strong>Stott</strong> puts it, the Sermon is "the most complete delineation anywhere in the New Testament of the Christian counter-culture." As <strong>McKnight</strong> adds, "an ethic unshaped by eschatology is neither Jesus' nor Christian." As <strong>Luz</strong> concludes, the Sermon presents Christian praxis "as the expression of grace."</p> | |
| <footer class="end"> | |
| <p><strong>Primary commentaries consulted</strong>: Davies & Allison ICC · Luz Hermeneia · France NICNT · Carson EBC · Hagner WBC · Nolland NIGTC · Keener · Osborne ZECNT · Allison (<em>The New Moses</em>; <em>Sermon on the Mount</em>) · Stassen (JBL 2003) · Wink (<em>Engaging the Powers</em>) · Wright (<em>Jesus and the Victory of God</em>) · Stott (<em>Christian Counter-Culture</em>) · McKnight (SGBC) · Hauerwas (Brazos).</p> | |
| <p><strong>Online sources</strong>: Biblehub (commentaries, interlinear, Greek lexicon) · Precept Austin · Wikipedia (Matthew articles) · SciELO · Cambridge NTS · Ad Fontes Journal · intertextual.bible · Theopolis Institute · Working Preacher · BibleProject · Fortress Press · Lutheran Peace Fellowship · Waging Nonviolence.</p> | |
| </footer> | |
| </main> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment