Friday, July 11, 2025

Proof ∀n∈ℕ, n>1, ∀r∈ℝ\{1}, Σ(rᵏ)[k=0→(n-1)] = (rⁿ - 1)/(r-1)

Show that nN>1,rR{1},1+r+r2++rn1=rn1r1.

We are asked to prove the formula for the finite geometric series:

nN>1,rR{1},1+r+r2++rn1=rn1r1


Let’s define the left-hand side:

Let:

S=1+r+r2++rn1

This is a geometric series with:

  • First term a=1
  • Common ratio r
  • Number of terms n

We want to derive a closed-form expression for S.


Step 1: Multiply both sides by r

rS=r+r2+r3++rn


Step 2: Subtract the two equations

Subtract the original series S from rS:

rSS=(r+r2++rn)(1+r+r2++rn1)

Almost all terms cancel out:

rSS=rn1


Step 3: Factor out S

S(r1)=rn1


Step 4: Solve for S

Since r1, we can divide both sides:

S=rn1r1


Conclusion

Thus, we have shown that:

1+r+r2++rn1=rn1r1for all nN>1,rR{1}

✔️ Proven.

Proof ∀n>4, 2^n > n^2

Use induction to prove that ∀n>4, 2^n > n^2.

We want to prove by mathematical induction that:

n>4,2n>n2


Step 1: Base Case

Let n=5. We need to check whether the inequality holds:

25=32,52=25,and32>25

Base case holds.


Step 2: Inductive Hypothesis

Assume that the statement is true for some integer k5. That is, assume:

2k>k2

This is our inductive hypothesis.


Step 3: Inductive Step

We must show that this implies:

2k+1>(k+1)2

Start with:

2k+1=22k

Using the inductive hypothesis 2k>k2, we get:

2k+1=22k>2k2

So we want to show:

2k2>(k+1)2

Expand the right-hand side:

(k+1)2=k2+2k+1

So we want:

2k2>k2+2k+1

Subtract k2+2k+1 from both sides:

2k2(k2+2k+1)=k22k1>0

We now solve:

k22k1>0

Find the roots of k22k1=0:

k=2±4+42=2±82=2±222=1±2

So k22k1>0 for k>1+22.41

✅ Since we assume k5, the inequality holds.


Conclusion

By mathematical induction, we have shown that:

n>4,2n>n2

Proved.

Proof ∀n∈ℕ, 3^n > n^2

Show that, ∀n∈ℕ, 3^n > n^2.

We want to prove that

nN,3n>n2.


Step 1: Check small values of n

Let’s test a few small values to see when this inequality starts to hold:

  • n=1: 31=3>12=1
  • n=2: 32=9>22=4
  • n=3: 33=27>9
  • n=4: 34=81>16
  • n=5: 35=243>25

So far, 3n>n2 for all n=1,2,3,4,5. Now let’s prove this by induction.


Step 2: Mathematical Induction

Base Case: n=1

31=3>12=1✔️

Inductive Hypothesis:

Assume for some k1, the inequality holds:

3k>k2

Inductive Step: Show 3k+1>(k+1)2

Starting from the LHS:

3k+1=33k

Using the inductive hypothesis 3k>k2, we get:

3k+1=33k>3k2

So if we can show:

3k2>(k+1)2=k2+2k+1

then the inductive step will be complete.

Let’s prove that:

3k2>k2+2k+13k2(k2+2k+1)=2k22k1>0

Now check when 2k22k1>0. This is a quadratic in k. Solve:

2k22k1=0k=2±(2)2+84=2±124=2±234=1±32

So the inequality 2k22k1>0 holds when

k>1+321.366

Thus, for k2, the inequality is certainly true.


Step 3: Adjust the Domain

The inequality holds for all n1, and the inductive step is valid for k2. But:

  • Base cases n=1 and n=2: already checked and true.
  • Inductive step works from k=2 onward.

So we can conclude:


✅ Final Answer:

nN,n1,3n>n2

If you define N to include 0, then at n=0, 30=1>02=0, so it still holds. Thus:

nN,3n>n2

Proof ∀n∈ℕ, 3|(n³+2n)

Prove by induction that, ∀n∈ℕ, 3|(n³+2n).

We are asked to prove by mathematical induction that:

nN, 3(n3+2n)

That is, for every natural number n, the expression n3+2n is divisible by 3.


Step 1: Base Case

Let n=1:

n3+2n=13+2(1)=1+2=3

Since 33, the base case holds.


Step 2: Inductive Hypothesis

Assume that the statement holds for some n=k, i.e., assume:

3(k3+2k)

This means there exists an integer m such that:

k3+2k=3m


Step 3: Inductive Step

We want to show that the statement holds for n=k+1, i.e., show:

3((k+1)3+2(k+1))

Compute the expression:

(k+1)3+2(k+1)=k3+3k2+3k+1+2k+2=k3+3k2+5k+3

Group terms:

=(k3+2k)+(3k2+3k+3)

By the inductive hypothesis, 3(k3+2k)

Also note: 3k2+3k+3=3(k2+k+1), so clearly divisible by 3.

Therefore, the entire expression is the sum of two numbers divisible by 3:

(k3+2k)+3(k2+k+1)3((k+1)3+2(k+1))


Conclusion

By mathematical induction, we have shown that:

nN, 3(n3+2n)

Proved.

Proof Σ(1/√k)[k=1→n] < 2√n

Prove, using induction, that for every natural number n: 1+12+13++1n<2n

Proof by Induction

We are asked to prove that for all natural numbers n1:

1+12+13++1n<2n

or in summation form:

k=1n1k<2n


Step 1: Base Case

Check for n=1:

k=111k=11=1

Check if:

1<211<2

✅ True.


Step 2: Induction Hypothesis

Assume the inequality holds for some n=k1:

i=1k1i<2k

This is the induction hypothesis.


Step 3: Induction Step

Prove it holds for n=k+1:

i=1k+11i<2k+1

Start from the induction hypothesis:

i=1k+11i=(i=1k1i)+1k+1

Apply the hypothesis:

<2k+1k+1

We need to show:

2k+1k+1<2k+1

Subtract 2k from both sides:

1k+1<2(k+1k)

Compute the right-hand side:

k+1k=(k+1)kk+1+k=1k+1+k

Then:

2(k+1k)=2k+1+k

Check if:

1k+1<2k+1+k

Cross multiply (all terms are positive):

(k+1+k)<2k+1

Check:

k<k+1

✅ Always true for all k1.


Conclusion:

The induction step holds. Therefore, by the principle of mathematical induction, the inequality

i=1n1i<2n

holds for all natural numbers n1. ✅

Monday, July 7, 2025

Motivation of matrix multiplication

Inspired by this tweet.

Explain this claim: "matrix multiplication is Like That because it is a definition of multiplication over matrices that satisfies some of the same properties we care about over real numbers"

Matrix multiplication isn’t “mystical” or arbitrary—it’s chosen so that when you represent linear transformations as matrices, composing those transformations corresponds exactly to multiplying their matrices, and so that the algebraic rules you like for real numbers carry over. Here’s why the definition looks the way it does:


1. Matrices as linear maps

  • Interpretation An m×n matrix A represents a linear map

    A:RnRm,

    sending each vector xRn to A,xRm.

  • Composition If you then apply another linear map B:RpRn after A, you get

    AB:Rp,B,Rn,A,Rm.

    We want the matrix of AB to be exactly the product of the matrices of A and B.


2. Desired algebraic properties

To mirror the familiar arithmetic of real numbers, we impose the following on “multiplication”:

  1. Associativity (A,B),C=A,(B,C) so you can compose several maps without worrying about how you parenthesize.

  2. Distributivity A,(B+C)=A,B+A,C,(A+B),C=A,C+B,C so matrix multiplication plays nicely with matrix addition.

  3. Identity element There should be an “I” so that I,A=A=A,I, corresponding to the identity map on Rn.

  4. Compatibility with scalars (λA),B=λ,(A,B)=A,(λB) for any real λ.

Together, these axioms make the set of all n×n matrices into a ring (in fact, a non-commutative algebra) much like the real numbers.


3. Deriving the “row-by-column” rule

Let

$$ A = \bigl[a_{ij}\bigr]{m\times n},\quad B = \bigl[b{jk}\bigr]_{n\times p}. $$

We want the (i,k)-entry of the product C=A,B to be exactly the result of doing:

  1. Take the ith row of A: (ai1,ai2,,ain).

  2. Take the kth column of B: (b1k,b2k,,bnk)T.

  3. Compute their dot-product:

    cik;=;j=1naij,bjk.

Why a dot-product? Because applying B to the kth standard basis vector ek picks out its kth column, and then A acts on that vector by taking those linear combinations of its rows.


4. What you “get for free”

Because of this definition:

  • Composition ↔ multiplication The matrix of AB is A,B.

  • All the ring axioms hold You can add, multiply, and scale matrices just like numbers, except multiplication may not commute (A,BB,A in general).

  • Powerful algebraic structure You can talk about invertibility (when there’s a two-sided “matrix reciprocal”), eigen-theory, determinant, trace, etc., all of which generalize properties of numbers.


In a nutshell

Matrix multiplication is “like that” because it’s defined to be the operation on arrays of numbers which (a) models composition of linear maps and (b) satisfies the familiar algebraic laws (associativity, distributivity, identity, scalar compatibility) we depend on when working with real numbers.

Saturday, July 5, 2025

Major languages by proto-language

These are some major languages. Write a list of these languages divided by which proto-language they descend from, and noting for each one also the places where they are most spoken.

English
Mandarin Chinese (Standard Chinese)
Hindi
Spanish
Modern Standard Arabic
French
Bengali
Portuguese
Russian
Indonesian
Urdu
Standard German
Japanese
Nigerian Pidgin
Marathi
Vietnamese
Telugu
Hausa
Turkish
Western Punjabi
Swahili
Tagalog
Tamil
Iranian Persian
Korean
Thai
Javanese
Italian
Gujarati
Amharic
Kannada
Bhojpuri

Proto-Language Families and Their Modern Descendants

Below each proto-language (or the most widely accepted immediate ancestor) you’ll find the modern languages you listed, followed by the main places where each is spoken today.


Proto-Germanic (Indo-European)

  • English – United States, United Kingdom, Canada, Australia, Nigeria (as a lingua franca)
  • Standard German – Germany, Austria, German-speaking Switzerland, Luxembourg, Liechtenstein

Proto-Romance / Latin (Indo-European ▶ Italic)

  • Spanish – Mexico, Spain, Colombia, Argentina, United States (large heritage community)
  • French – France, Democratic Republic of Congo, Côte d’Ivoire, Canada (Quebec), Senegal
  • Portuguese – Brazil, Portugal, Angola, Mozambique, Cape Verde
  • Italian – Italy, Swiss canton of Ticino, San Marino, Vatican City (diaspora in Argentina, U.S., Australia)

Proto-Indo-Aryan (Indo-European ▶ Indo-Iranian)

  • Hindi – India (north-central belt), Fiji (as Fiji Hindi diaspora)
  • Bengali – Bangladesh, India (West Bengal, Tripura)
  • Urdu – Pakistan, India (Uttar Pradesh, Bihar; cultural lingua franca in Bollywood), Gulf diaspora
  • Marathi – India (Maharashtra, parts of Goa & Karnataka)
  • Gujarati – India (Gujarat), Pakistan (Sindh), sizable diaspora in U.K., U.S., East Africa
  • Western Punjabi (Punjabi-Lahnda) – Pakistan’s Punjab Province; strong communities in U.K., Canada, Gulf
  • Bhojpuri – India (Uttar Pradesh, Bihar), Nepal (Terai); historic diaspora in Mauritius, Fiji, Guyana, Suriname

Proto-Iranian (Indo-European ▶ Indo-Iranian)

  • Iranian Persian (Farsi) – Iran; closely related varieties in Afghanistan (Dari) and Tajikistan (Tajiki)

Proto-Slavic (Indo-European)

  • Russian – Russia, Belarus, Kazakhstan, Kyrgyzstan; minority lingua franca across post-Soviet states

Proto-Sinitic (Sino-Tibetan)

  • Mandarin Chinese (Standard Chinese) – Mainland China, Taiwan, Singapore, global Chinese diaspora

Proto-Dravidian

  • Telugu – India (Andhra Pradesh, Telangana)
  • Tamil – India (Tamil Nadu, Puducherry), Sri Lanka (North & East), Singapore, Malaysia
  • Kannada – India (Karnataka, parts of Maharashtra, Kerala, Telangana)

Proto-Turkic

  • Turkish – Türkiye, Northern Cyprus; large migrant communities in Germany, Netherlands, France

Proto-Semitic (Afro-Asiatic)

  • Modern Standard Arabic – Written/official medium across the Arab League (Egypt, Saudi Arabia, Algeria, Iraq, etc.)
  • Amharic – Ethiopia (Addis Ababa and central highlands)

Proto-Chadic (Afro-Asiatic ▶ West Chadic)

  • Hausa – Northern Nigeria, Niger; regional trade lingua franca in Ghana, Cameroon, Chad

Proto-Bantu (Niger-Congo)

  • Swahili (Kiswahili) – Tanzania, Kenya, Democratic Republic of Congo, Uganda, Rwanda, Burundi

Proto-Malayo-Polynesian (Austronesian)

  • Indonesian (Bahasa Indonesia) – Indonesia (official lingua franca across the archipelago)
  • Tagalog / Filipino – Philippines (especially Luzon); overseas Filipino communities in U.S., Canada, Gulf
  • Javanese – Indonesia (Central & East Java, Yogyakarta)

Proto-Vietic (Austro-Asiatic)

  • Vietnamese – Vietnam; sizable diaspora in U.S., Australia, France, Czech Republic

Proto-Tai (Kra–Dai)

  • Thai – Thailand (national language)

Proto-Japonic

  • Japanese – Japan; migrant communities in Brazil, U.S., Peru

Proto-Koreanic

  • Korean – South Korea, North Korea; diaspora in China (Yanbian), U.S., Japan

English-Based Creole (no single ancestral proto-language)

  • Nigerian Pidgin (Naija) – Nigeria’s urban centres and Niger Delta; understood across West Africa’s anglophone sphere

This grouping follows the most widely accepted immediate proto-languages used by historical linguistics; for creoles, lexifier ancestry rather than strict genetic descent applies.

Motivation for the definition of sine

what's the motivation for letting sin(x) be defined for angles greater than 90°? how is it defined without a right triangle?

In elementary geometry, sine is introduced via a right-triangle: for an acute angle θ,

sinθ=opposite sidehypotenuse.

But once you want to talk about angles beyond 90° (or even negative angles, or angles > 360°, or non-geometric “angles” like radians), that triangle picture no longer suffices. Here’s the motivation and the standard ways we extend sin to all real (and even complex) arguments:


1. Motivation for extending beyond 90°

  1. Continuity & periodicity If you try to piece together right-triangle definitions only for 0°–90°, you’d have gaps and “jumps” when you pass 90°, 180°, etc. But in nature (waves, rotations, oscillations) the sine-wave is smooth and repeats forever. Extending sin θ to every real θ makes it a continuous, infinitely differentiable, 2π-periodic function.

  2. Applications in physics & engineering Rotations in the plane (e.g. turning a vector by an arbitrary angle), harmonic motion, signal processing, Fourier analysis—all require sine (and cosine) at angles of any size, not just acute ones.

  3. Solving differential equations The basic ODE

    d2ydx2+y=0

    has solutions y = sin x and y = cos x defined for all real x. Restricting to 0–90° would deprive us of half of the solutions!


2. The unit‐circle definition

We place ourselves in the Cartesian plane and draw the unit circle (radius 1 centered at the origin). Then for any real angle x (measured, say, in radians, counter-clockwise from the positive-x axis):

  • Travel around the circle by arc‐length x.

  • Let (X,Y) be the coordinates of the point you land on.

  • Define

    cos(x)=X,sin(x)=Y.

This single picture handles:

  • x between 0 and π/2 (0°–90°) → first quadrant
  • x between π/2 and π (90°–180°) → second quadrant (sin is still positive, cos flips negative)
  • x between π and 3π/2 → third quadrant (both sin, cos negative)
  • and so on, for all real x, positive or negative, even beyond 2π.

3. The power‐series (analytic) definition

Analytically, we can define sine by its infinite Taylor series about 0:

sinx=xx33!+x55!x77!+

This converges for every real (and complex!) x. You no longer need a triangle or circle—just algebra and limits. From this you can prove all the familiar properties:

  • Oddness: sin(−x)=−sin x
  • Periodicity: sin(x+2π)=sin x
  • Derivatives: d/dx sin x=cos x, etc.

4. The differential‐equation definition

Yet another equivalent is to say “sin x is the unique solution of”

d2ydx2+y=0,y(0)=0,y(0)=1.

This defines it for all x, independent of any triangle picture.


In practice

  • For intuition: think “y‐coordinate on the unit circle.”
  • For computation: use the series or numerical algorithms derived from it.
  • For theory: you can lean on the ODE or on complex‐analytic continuation to define sin z for complex z.

All of these views agree and ensure that sin x makes perfect sense (and behaves beautifully) for angles of any measure—acute, obtuse, reflex, negative, fractional, or purely imaginary.

The output contained a hallucinated imgur image. I only saw it after exporting it for this post. I have commented it out, but you can see it in the HTML of this page.

Friday, July 4, 2025

Daryl Davis KKK Outreach

tell me how Daryl Davis has reached out to KKK members

Below is a step-by-step picture of the methods Daryl Davis has used for more than 40 years to reach—and often disarm—the prejudices of Ku Klux Klan members.


1. Turning a chance barroom chat into a long-term project

  • 1983, Silver Dollar Lounge (Frederick, MD). While playing piano with a country band, Davis was complimented by a white patron who then admitted he was a Klansman and gave Davis his phone number. Davis kept calling, met more Klan members during breaks, and realised he had stumbled onto a way to probe the question that had haunted him since childhood: “How can you hate me when you don’t even know me?” (persuasion.community)
  • The episode convinced him to interview Klan figures nationwide for a book—eventually published as Klan-Destine Relationships: A Black Man’s Odyssey in the Ku Klux Klan (1998) (cmc.marmot.org).

2. Cold-calling the Grand Dragon—then listening, not lecturing

  • With the bar patron’s reluctant help, Davis arranged a motel-room interview with Roger Kelly, Maryland’s Grand Dragon. Kelly arrived flanked by an armed “Grand Nighthawk”, but Davis kept the tone courteous, answered questions calmly, and let Kelly talk. The two kept meeting for years; Kelly eventually quit the Klan, asked Davis to be his daughter’s godfather, and gave him his robe and hood as a keepsake (hir.harvard.edu).

3. Principles he follows in every encounter

Principle How he applies it
Radical courtesy Shakes hands first, calls people “Mr.” or “Ms.” even when they call him slurs, and never interrupts their opening statement.
Active listening Lets them air stereotypes fully, then counters with calmly delivered facts or personal stories.
Shared interests Uses music, military history or classic cars as ice-breakers; invites Klansmen to his gigs, and accepts (carefully) invitations to their rallies.
Humanising reciprocity Reiterates: “I’m not here to convert you; I’m here to understand you.” The lack of overt persuasion lowers their guard.
Patience Keeps in touch for months or years—by phone, letters, and repeated face-to-face visits—until cognitive dissonance does its work.

These ideas echo the formula he often cites: “Ignorance → Fear → Hatred → Violence. Break the chain at ‘ignorance’ with information and friendship.” (hir.harvard.edu)

4. Going where the Klan is

  • Attending rallies & cross-lightings. Davis accepts invitations to events many civil-rights activists would shun, precisely so Klansmen can “see a Black man who doesn’t fit the script”.
  • Inviting them onto neutral ground. He hosts dinner at his home, takes them to blues clubs, and (after trust grows) introduces them to Black churches and mixed-race social circles.
  • Documenting it all. Photos and audio from meetings went into his book, the PBS documentary Accidental Courtesy (2016), and dozens of podcasts and university talks, providing a public record that deters back-sliding.

5. The visible results

  • Davis keeps a collection of ~25 Klan robes and hoods—gifts from men and women who resigned after long conversations with him (en.wikipedia.org).
  • By his own conservative count he has been the direct or indirect catalyst for “over 200” people leaving the Klan—including state-level officers and recruiters—without ever once asking anyone to quit (businessinsider.com).

6. Scaling the model in the 2020s

  • Workshops & the “Deradicalization Initiative.” As an adviser to the social network Minds, Davis now trains moderators, law-enforcement officers and students in the same dialogue techniques he used one-on-one (en.wikipedia.org).
  • Ongoing speaking tour and podcasts (2024-25). Recent interviews—from The Good Fight podcast (May 2024) to university events in 2025—show him still meeting extremists in person and online, arguing that “respect is the best persuader; violence only hardens beliefs.” (persuasion.community, fcas.org)

Take-away

Daryl Davis’s outreach is not based on debating ideology or shaming bigotry in public. It is a meticulously personal strategy: meet the person, offer genuine curiosity, maintain respectful contact, and let their own experience of that relationship unravel their stereotype. Decades of robes in his closet suggest that, given enough patience and proximity, even the most entrenched Klansman can—and sometimes does—walk away.

Thursday, July 3, 2025

Current state of Kindle DeDRM as of 2025-07-03

Users who want to back up their Kindle ebooks used to use old versions of the Kindle for Windows app in order to get them in a format from which they could remove DRM. Amazon has made this no longer available. Have any users come up with a workaround?

Short answer

Yes — several communities have found partial work-arounds, but none of them is as simple or robust as the old “Kindle for Windows 1.x” trick, and none lets you strip the new KFX-3 DRM that Amazon began rolling out this spring. In practical terms, every current method:

  • relies on software or firmware that Amazon could disable at any time,
  • only works on titles first published before about 23 April 2025, or
  • requires owning (and occasionally downgrading) a hardware Kindle and then using third-party tools on the files you copy off it.

Below is a high-level survey (no step-by-step instructions) of what is still circulating.


1. Downgrading the desktop app — temporarily still possible

Some Windows users are sideloading Kindle for PC 2.4.0 (or earlier) from mirrors and blocking its auto-updates. The older build still downloads the “KFX 2” flavour of Amazon’s files, which existing open-source plug-ins can decrypt – but only for books released before the April 2025 cutoff. Any book that comes down with the newer KFX 3 scheme remains locked.(epubor.com)

2. Grabbing books through a Kindle e-ink device

Because e-ink Kindles (Paperwhite, Oasis, Scribe, etc.) still let you connect by USB, many people now:

  1. buy or side-load the book directly onto the device,
  2. copy the downloaded .azw / .kfx file to a computer, and
  3. feed it to a Calibre plug-in (or commercial software) that’s keyed to the device’s serial number.

This approach currently works even for 2025-era titles, but only if the device hasn’t auto-updated to a firmware that swaps in KFX 3. Reports suggest that once the new firmware is pushed to all devices, the loophole may close.(ereadersforum.com)

3. Android-emulator tricks

A smaller group installs an old Kindle-for-Android APK inside an emulator (BlueStacks, Android Studio, etc.) because that APK still downloads the easier-to-decrypt files. Success depends on pinning the app to a very specific version and blocking Amazon’s update checks. This method shares the same “pre-April-2025 only” limitation and carries the usual security caveats.(epubor.com)

4. Commercial “one-click” tools

Packages such as Epubor Ultimate bundle downgrading, key extraction and conversion into a single interface. Under the hood they use the same tactics described above, so they have the same cut-off date and can’t unlock KFX 3 yet.(epubor.com)


State of the arms-race in July 2025

  • New DRM variant (KFX 3): As of today, no public utility, open-source or commercial, can decrypt books delivered in this format. The DeDRM maintainers and several proprietary vendors say they are still researching it.(reddit.com)
  • Removed “Download & Transfer via USB” button: Amazon’s decision (effective 26 Feb 2025) means you can’t fetch a copy for sideloading straight from your account webpage any more. All current work-arounds therefore hinge on older software or a physical Kindle.(theverge.com)

Legal & practical reminders

  • Circumventing DRM may violate Amazon’s Terms of Use and, in some jurisdictions, anti-circumvention law (e.g., the U.S. DMCA).
  • Even where personal backups are lawful, distributing decrypted files is almost certainly not.
  • Amazon can—and sometimes does—force-update its apps / firmware, which can break any of the methods above without notice.

Bottom line

For now, the only consistently successful path is to keep a hardware Kindle on older firmware and use it as the source of the files you back up. Everything else either stops at the April 2025 wall or is liable to disappear the next time Amazon pushes an update. If you need guaranteed long-term archiving, you may want to buy in a truly DRM-free store whenever the publisher offers that option, or explore Amazon’s own “Send-to-Kindle” personal-document workflow (which keeps a copy in your cloud library but does not remove DRM).

Wednesday, July 2, 2025

Reparations Movement Promotion Ideas

Suggest ideas for how to promote the “You Do Deserve Reparations For Slavery If You Can Prove In Court That You Are A Descendant Of Someone Who Was Enslaved By Someone Who You Can Prove Has Living Descendants, But Not Otherwise” movement

Below is a menu of practical, broad-audience tactics you can mix-and-match to raise the profile of the “You Do Deserve Reparations … But Not Otherwise” movement. None of them rely on micro-targeting or demographic profiling, so they stay in safe, permission-based territory while still giving you real reach.


1. Put the core idea into a memorable, share-worthy package

  • Condense the mission into a three-to-five-word slogan (e.g., “Prove & Claim,” “Lineage Matters,” “Document then Reparations”) that can live in hashtags, merch, and headlines.
  • Craft a one-sentence explainer that anyone can repeat: “If you can document your enslaved ancestor -- and the family who benefited -- you deserve restitution.”

2. Lead with stories, not statutes

  • Launch a “Lineage Spotlights” social series—short vertical videos of descendants walking through their proof journey and why it matters.
  • Pitch those human-interest stories to local papers and podcasts first (they’re hungrier); national outlets often pick them up once there’s grassroots buzz.

3. Build a free, self-serve “Proof Toolkit”

  • A lightweight website or Notion hub containing:

    • Links to major genealogy databases (U.S. Census, Freedmen’s Bureau, African-American Newspapers).
    • A printable checklist (what documents to gather, how to track chain of custody).
    • Short explainers on legal standards of evidence.
  • Make the toolkit open-source so partner orgs can remix it with their branding—your message travels further with their audiences.


4. Partner where genealogy and justice already intersect

  • African-American genealogical societies, HBCU history departments, public-interest law clinics, and public libraries all run workshops—offer your curriculum as “Session 2: Turning Research Into Legal Proof.”
  • Co-sponsor “Genealogy Hackathons” at family-reunion weekends; provide scanners, on-site archivists, and pro-bono attorneys for Q&A.

5. Stage attention-grabbing legal pilots

  • Identify one or two emblematic cases with airtight documentation and a willing defendant estate (or a default judgment).
  • Crowdfund litigation costs transparently; livestream key court dates; let journalists sit in strategy calls where feasible.
  • A single favorable ruling—even at a low dollar amount—creates precedent and coverage you can point to in every conversation.

6. Create regular “Descendants’ Clinics” in key metros

  • Think voter-registration-table, but for reparations paperwork: pop-up tents at Juneteenth parades, cultural festivals, farmers’ markets.
  • Volunteers help attendees start family trees on a laptop, print Freedom of Information Act letters, or schedule follow-up calls with partner lawyers.

7. Produce “explain-it-once” media you can repurpose everywhere

  • Animated explainer (2-minute) that demystifies the legal test—great for Twitter/X, TikTok, and conference screens.
  • Infographic carousel (“5 Docs to Begin Your Proof”) formatted for Instagram, LinkedIn, and one-pager handouts.
  • A podcast mini-series featuring historians, heirs of enslavers who now support restitution, and judges who’ve ruled on lineage cases.

8. Engage influencers who sit at credible crossroads

  • History-Tok creators, Black law-student TikTokers, genealogy YouTubers, and legal Twitter threads are already educating audiences; offer them research assistance, guest experts, or early access to case filings—not scripts.
  • Provide a shared Canva template pack so their content looks coherent without feeling corporate.

9. Give policy-makers something tangible to point to

  • Publish an annual “Lineage Casebook” summarizing filed cases, outcomes, and legal reasoning. Even unsuccessful suits teach legislators what statutory fixes are needed.
  • Present key findings in coalition briefings on Capitol Hill, statehouses, and city councils; always pair a descendant storyteller with the lawyer for impact.

10. Mark the calendar with “National Descendants Day”

  • Pick a meaningful date (e.g., the day the 13th Amendment was ratified) and declare it a yearly call-to-action: free ancestry look-ups, webinars, Twitter/X spaces, media op-eds, and local proclamation ceremonies.
  • Consistency makes it easier for reporters to plan coverage and for supporters to remember to repost.

11. Fundraise sustainably—and visibly

  • Offer a micro-donation “dollar-match” badge: supporters can cover one document-order fee ($10ish) for a descendant.
  • Publish a quarterly transparency report: number of claimants helped, documents retrieved, cases filed, dollars spent. Trust fuels amplification.

12. Keep the movement infrastructure light and federated

  • A central steering committee sets message guard-rails and shares assets. Local chapters adapt tactics to their context—no one waits on headquarters for permission.
  • Shared Slack or Discord keeps best practices flowing (template court motions, affidavit formats, “Which county clerk scans same-day?” tips).

Measuring success

Metric Why it matters How to track
Toolkit downloads / unique users Gauges top-of-funnel interest Google Analytics; unique QR codes at events
Completed proof packets Shows mid-funnel progress Secure form submissions; partner law-clinic counts
Cases filed & rulings Core impact indicator PACER alerts; state e-filing portals
Earned media hits Expands reach to new audiences Meltwater / Google News alerts
Donor retention rate Signals trust & stability CRM dashboards

Bottom line: center personal narrative, make the proof process feel doable, and show concrete wins—however small—so people see reparations as a legal pathway, not just an abstract moral claim. Consistency and transparency will grow credibility faster than any single viral moment.

Corfield on presuppositions

This post continues from the conversation in this other post.

The book “Modal Homotopy Type Theory”, by David Corfield, proposes a type-theoretical interpretation of presuppositions:

With the idea of a context available, type theory should provide us with a way to distinguish between consequences and presuppositions. Whereas 'James has stopped smoking' presupposes that at some point he was in the habit of smoking, from the proposition 'n is the sum of two odd numbers' we may conclude that n is even. Presuppositions are what need to be in place for a type to be formed or a term introduced. Consequences result from application of rules to existing judgements. For example,

  • Presupposition: from A×B:Type, we must have that A,B:Type.
  • Consequence: from c:A×B, we can conclude that p(c):A and q(c):B.

Despite this neat distinction, we are inclined to see an inference occurring in the case of presupposition just as much as in the case of consequence. It is easy to think that we infer from 'James has stopped smoking' that he was in the habit of smoking. What seems to be occurring is that we are presented with a proposition, P, such as 'James has stopped smoking'. Then, to interpret it, it is our job to provide the minimal context, Γ, which can support the formation of P:

ΓP:Prop.

Then say Γ=x1:A1,x2:A2,...,xn:An, from which we extract one clause of the context

x1:A1,x2:A2,...,xi:Ai,xj:Aj,...,xn:Anxj:Aj for 1jn.

We have trivially

x1:A1,x2:A2,...,xi:Ai,...,xn,y:Pxj:Aj,

at which point we forget the context and think we have an entailment

y:Pxj:Aj.

This is to be contrasted with the case when we have the means in a context to derive a new proposition, such as with

x:A,f:[A,B]f(x):B.

Ranta in ‘Constructive Type Theory’ (2015, p. 358) proposes along similar lines that we distinguish these operations as follows:

  • B presupposes A means x:AB(x):Type.
  • A semantically entails B means x:Ab(x):B.

Evaluate to what extent this captures the idea of presuppositions in pragmatics.

How Corfield & Ranta transpose presupposition into type-theoretic terms

Pragmatic presupposition (traditional view) Corfield/Ranta account
Intuition Backgrounded content that must already be common ground for an utterance to be felicitous Backgrounded typing assumptions that must already be in the context Γ for the judgment “Γ ⊢ P : Prop/Type” to be well-formed
Formal locus A condition on the context of discourse (Stalnaker 1973) A condition on the context of hypotheses in Martin-Löf type theory
Example “James has stopped smoking” presupposes James smoked The type of stoppedSmoking(james) can only be formed in a Γ that already contains a proof of Smokes(james)
Consequence Survive negation, interrogation, etc. Type-formation requirements are untouched by logical operators; Γ stays the same

In Corfield’s words, presuppositions are “what need to be in place for a type to be formed,” while consequences are what can be derived once the term exists (ncatlab.org). Ranta formulates the same idea as

B presupposes A ⇝ x : A ⊢ B(x) : Type” (ncatlab.org)

so presupposition is treated as well-formedness, not as an entailment inside the calculus.


Where this mapping works well

Phenomenon Match with type-theoretic treatment Why
Need for a “licensing” context ✓ Exact: a judgment is ill-typed without the presupposed assumptions—mirrors pragmatic infelicity (“Hey, wait, James never smoked!”).
Projection under negation & questions ✓ Requirements in Γ are structural, so ¬P, ?P, if P then Q, etc. all still need Γ. This captures the classical projection profile of presuppositions.
Accommodation ✓ Γ can be extended on the fly: a hearer who lacks Smokes(james) can add it, mirroring Stalnaker-style accommodation. Dependently-typed dynamic frameworks (e.g. Bekki’s Dependent-Type Semantics) already implement such updates .
Distinction from entailment ✓ Clear: entailments are derivable judgments (Γ ⊢ b : B) while presuppositions are premises (A∈Γ). This dissolves the frequent classroom confusion “presupposition vs. implication”.

These points suggest that Corfield’s proposal captures the normative side of presupposition—the idea that an utterance demands a certain backdrop of accepted information.


Where the fit is incomplete

Empirical issue from pragmatics How far the type-theoretic view goes What is still missing
Lexical triggering spectrum (hard vs. soft triggers) Hard triggers like stop map nicely to formation rules. Soft triggers (too, again) often feel like inferences rather than strict typing needs. Would need graded or optional formation rules—something not standard in MLTT.
Local vs. global satisfaction / filtering (e.g. “If John smoked, he stopped”) A single, monotone Γ can’t express that the antecedent satisfies the presupposition only inside the conditional’s branch. Requires dynamic or multi-stage contexts (cf. DRT, dynamic predicate logic) (plato.stanford.edu) or dependent-type dynamic logics.
Cancellation / suspension of soft presuppositions MLTT treats presuppositions as necessary for typing, so “cancelling” them is impossible. Softness would need to be encoded as mergeable or optional assumptions, e.g. via modal types or proof irrelevance.
Processing asymmetries (experimental work on time-course, memory) (degruyterbrill.com) Not addressed—type theory is static and proof-oriented. Cognitive models of proof search or incremental context-building would have to be added.
Lexical idiosyncrasies & pragmatic strengthening Requires heavy lexical typing for every trigger; quickly becomes unwieldy. Hybrid approaches often delegate most trigger-specific content to the lexicon plus pragmatic reasoning.

Relation to other formal accounts

  • Dynamic semantics views a sentence as a context-update function; presuppositions are defined preconditions on that function (plato.stanford.edu). Corfield’s Γ-typing idea is a Curry–Howard analogue of those preconditions.
  • Dependent-Type Semantics (Bekki, Tanaka & Mineshima) refines this by giving proof-objects for presuppositions and showing how factive verbs or anaphora inject them compositionally .
  • Modal variants of HoTT (Corfield ch. IV & VII) suggest using necessity or possibility modalities to mark information-state sensitivity; this dovetails with attempts to model soft presuppositions as default modal assumptions.

Bottom line

Corfield’s and Ranta’s treatment elegantly reconstructs the structural side of presupposition within dependent type theory: Presuppositions are precisely those pieces of information that must already be typed in the context for the utterance to compile.

This gives a clean logical contrast with consequential entailment and provides a Curry–Howard bridge to dynamic‐semantics talk of context preconditions. However, the approach is only a first pass on the full pragmatic phenomenon:

  • It handles projection and accommodation in a principled way,
  • but it lacks mechanisms for soft triggers, local filtering, speaker‐oriented cancellation, and psycholinguistic gradience.

To reach empirical adequacy, one needs to enrich the pure MLTT picture with dynamic context-updates, graded modalities, and lexical semantics—directions already explored in Dependent-Type Semantics and recent modal HoTT work. Still, Corfield’s proposal shows that type theory can serve as a unifying proof-theoretic backbone for future, more linguistically realistic models of presupposition.

Presuppositions, implicatures, and implications

This first response is from o4-mini.

In pragmatics what are presuppositions and implicatures?

In pragmatics, both presuppositions and implicatures are ways in which speakers convey—and listeners infer—information that goes beyond the literal meaning of utterances. They differ, however, in how that extra information is encoded and recovered.


Presuppositions

A presupposition is an assumption that a sentence (or utterance) takes for granted as background information. If the presupposition isn’t already established in the context, the utterance typically feels odd, misleading, or infelicitous.

  • Definition: A proposition P is a presupposition of sentence S if, whenever S is used felicitously, the speaker and hearer must both accept P as true.

  • Triggers: Certain words or constructions automatically carry presuppositions, for example:

    • Definite descriptions: “The king of France is bald.” presupposes “There is a king of France.”
    • Factives: “I regret that I ate too much.” presupposes “I ate too much.”
    • Change-of-state verbs: “She stopped smoking.” presupposes “She used to smoke.”
    • Temporal clauses: “Before he arrived, we had dinner.” presupposes “He arrived.”
  • Projection behavior: Even in negated, questioned, or conditional forms, presuppositions tend to “project”—that is, they remain assumptions regardless of operators around them.

    • “Did you stop smoking?” still presupposes “You used to smoke.”
    • “If she stopped smoking, she will feel better.” presupposes “She used to smoke.”
    • “She didn’t regret leaving.” still presupposes “She left.”
  • Example:

    “John’s sister is a doctor.”

    • Presupposes: “John has a sister.”
    • As a result, if you don’t already believe John has a sister, the utterance feels strange or misleading.

Implicatures

An implicature is information implicitly conveyed by a speaker, which the listener infers based on principles of cooperative communication rather than any explicit presupposition.

There are two main types:

  1. Conversational implicatures (Gricean implicatures)
  2. Conventional implicatures

1. Conversational Implicatures

  • Definition: Inferred meanings arising from the assumption that speakers generally follow conversational maxims (Quantity, Quality, Relation, Manner) laid out by Grice (1975).

  • Mechanism: Listeners reason: “If the speaker meant X, they would have said so; since they didn’t, they must mean Y.”

  • Example (Quantity):

    A: “How was the movie?” B: “Well, the cinematography was nice.”

    Implicature: B didn’t comment on plot or acting ⇒ perhaps the plot/acting was not so good.

  • Example (Relation):

    A: “Do you want to go to the concert?” B: “I have to work early tomorrow.”

    Implicature: B is declining the invitation, because they’re using relevance to imply they can’t attend.

  • Cancelability: Conversational implicatures can be explicitly “canceled” without contradiction:

    “The movie was great—and by the way, the acting was fantastic too.”


2. Conventional Implicatures

  • Definition: Meanings tied to particular words or constructions that are not part of the truth‐conditional content but are still conventionally attached to them.

  • Properties:

    • Encoded in the lexicon or grammar (unlike conversational implicatures, they do not depend on context-driven inference).
    • Non‐cancellable (or at least far harder to cancel felicitously).
    • Non‐projecting in the same way as presuppositions, but they persist even under negation.
  • Common triggers:

    • But, yet, however (contrast)
    • Even (scalar emphasis)
    • So (conclusion)
    • Because (reason)
  • Example:

    “She’s poor but happy.”

    • Truth‐conditions: ¬(rich(she)) ∧ happy(she)
    • Conventional implicature: Contrast between “being poor” and “being happy.”

Key Differences

Aspect Presupposition Conversational Implicature Conventional Implicature
Source Triggered by certain words/structures Inferred via Cooperative Principle Lexical/grammatical
Dependence on context Requires context to be satisfied Requires context and maxims Largely context‐independent
Cancelable? Generally non‐cancelable (except by defeating) Cancelable Typically non‐cancelable
Projection behavior Projects under negation, questioning, etc. Does not project; tied to particular context Persists under negation but not “projecting” like presuppositions

Why They Matter

Understanding presuppositions and implicatures is crucial for:

  • Pragmatic inference: How we read between the lines in everyday conversation.
  • Discourse analysis: Tracking which assumptions are taken for granted and how speakers manage shared information.
  • Computational linguistics: Designing systems that can interpret user intent beyond the literal text.

By distinguishing what must already be known (presuppositions) from what is conveyed by conversational strategy (implicatures), we gain insight into the rich, subtle ways language users communicate more than meets the eye.

This second response is from o3.

Expand this comparison to also compare logical implication to these two

Below is an expanded three-way comparison that brings logical implication into the picture alongside presuppositions and implicatures. After a quick refresher on what logical implication is, I contrast the three phenomena along the dimensions that typically matter in pragmatics and logic.


1. What is logical implication?

In formal semantics and logic, implication (often symbolized “→”) is a truth-functional relation between propositions.

  • Definition (classical logic): ϕ → ψ is false only when ϕ is true and ψ is false; in all other truth-value combinations it is true.
  • Speaker commitment: Uttering a statement that contains an implication (e.g. “If it rains, the streets will be wet”) commits the speaker to the truth of that whole conditional—but not to the truth of its antecedent or consequent individually.
  • Context-independence: The truth value depends purely on the propositions involved, not on what interlocutors mutually assume or infer.

2. Side-by-side comparison

Feature / Question Presupposition Conversational Implicature Conventional Implicature Logical Implication
How introduced? By specific triggers (definites, factives, “stop,” etc.) Inferred via Grice’s Cooperative Principle and maxims Encoded meaning of certain connectives/expressions (“but,” “even”) By logical form (connectives like “if…then,” “⊃”)
Part of truth-conditions? No (backgrounded) No (inferred) No (side meaning) Yes (conditional’s truth value)
Speaker commitment Speaker acts as though presupposition is already true Speaker suggests but need not be committed if implicature later canceled Committed to content plus the conventional side meaning Committed to the truth of the entire implication (ϕ → ψ)
Can it be canceled outright? Generally non-cancelable (must be “accommodated” or the utterance crashes: “Oops, sorry—John doesn’t actually have a sister”) Yes (“The soup was warm—but I don’t mean it was bad”) Normally non-cancelable without contradiction (“#She’s poor but happy—no contrast intended”) Not cancelable without changing the proposition; you can reject it, but you cannot assert it and deny it simultaneously
Projection under negation / questions? Projects: “Did you quit?” presupposes you used to smoke Does not project: negating or questioning typically removes the implicature Survives negation: “She isn’t poor but happy” still conveys contrast Negated wholesale: “¬(ϕ → ψ)” is simply a different proposition
Relies on shared context? Yes—must be accepted or accommodated Yes—derived from expectations about relevance, quantity, etc. Minimal—relatively context-insensitive once the trigger is used No—purely logical truth values
Test for presence Survival test (“Stop smoking” vs. “Did you stop smoking?”) Cancelability & calculability tests Lexical replacement (“but” → “and”) removes the contrast Truth-table and entailment tests
Typical example “John’s dog is asleep.” ⇒ presupposes John has a dog. “It’s getting late.” (in reply to an invitation) ⇒ implies “I should go.” “She is small but strong.” ⇒ conventional contrast. “If the alarm rings, there is a fire.” ⇒ logical implication.

3. How they interact (quick notes)

  1. Logical form vs. pragmatic enrichment

    • You can embed a presupposition trigger inside a material conditional:

      “If the king of France is bald, we need new barbers.” The conditional truth value is classical, but the presupposition (“France currently has a king”) still has to be accommodated—or else the sentence feels odd.

  2. Implicature on top of implication

    • Saying “If you finish your thesis, I’ll buy you dinner” often implicates the speaker believes the antecedent is uncertain (Quantity/Relevance). The implicature disappears if you add “…and even if you don’t, I’ll still buy you dinner.”
  3. Presupposition vs. logical entailment

    • “John regrets leaving” presupposes “John left,” but it does not logically entail “John left” in the truth-functional sense (because under negation—“John doesn’t regret leaving”—the truth of “John left” is still taken for granted).

4. Quick mnemonic

  • Presupposition: “Assumed in advance.” It must already be in the common ground (or swiftly get there).
  • Implicature: “Implied by pragmatics.” It’s worked out by cooperative reasoning and can be withdrawn.
  • Implication (logical): “If-then formal link.” It’s built into the proposition’s structure and evaluated truth-functionally, independent of conversational cooperation.

Keeping these distinctions straight helps disentangle what a sentence asserts, what it takes for granted, and what it merely suggests.

There is a continuation in this other post.

Monday, June 30, 2025

Properties of supremum and infimum

The proofs are exercises from Zalduendo’s Calculus off the Beaten Path.

Write this in symbolic logic:

s=supA if and only if s is an upper bound of A and for each ε > 0 we may find a ε ∈ A such that s − ε < a ε ≤ s.

A compact way to put the sentence entirely in first-order logical symbols is

s=supA[x(xAxs)][ε(ε>0x(xAsε<xs))].


  • x(xAxs)” says that s is an upper bound of A.
  • ε>0xA(sε<xs)” formalizes that for every ε>0 we can find an element of A within ε of s from below.

Saturday, June 28, 2025

Proof that a|b ∧ b|c .→. a|c

Show that if a|b and b|c, then a|c.

To prove: If ab and bc, then ac.


Definitions:

  • ab means there exists an integer k such that b=ak.
  • bc means there exists an integer m such that c=bm.

Proof:

Given:

  • b=ak for some kZ (since ab)
  • c=bm for some mZ (since bc)

Substitute b=ak into the equation for c:

c=bm=(ak)m=a(km)

Since kmZ (product of integers is an integer), we have:

c=a(km)ac


Conclusion:

We have shown that c is a multiple of a, so ac. Thus, if ab and bc, then ac. □

Set intersection and multiplication

What makes set intersection algebraically similar to multiplication?

Mathematicians see an almost one-for-one match between the usual arithmetic operations “ + ” and “ · ” and the set operations “∪” (union) and “∩” (intersection). Intersection plays the rôle of “multiplication” for several independent reasons:

Feature Ordinary multiplication Set intersection
Binary operation on a universe • acts on numbers in ℝ, ℚ, ℤ, … ∩ acts on all subsets of a fixed universe U
Commutative a · b = b · a A ∩ B = B ∩ A
Associative (a · b) · c = a · (b · c) (A ∩ B) ∩ C = A ∩ (B ∩ C)
Identity element 1: a · 1 = a U: A ∩ U = A
Zero (annihilator) 0: a · 0 = 0 ∅: A ∩ ∅ = ∅
Distributive over “addition” a · (b + c) = a · b + a · c A ∩ (B ∪ C) = (A ∩ B) ∪ (A ∩ C)
Absorption law a + a · b = a A ∪ (A ∩ B) = A
Complement gives a two-element algebra ±1 in {0, 1} give an idempotent semiring complements ¬A act like −a in the Boolean ring

These shared laws make the algebra of sets a semiring (and, if you swap union for symmetric difference, a Boolean ring). In other words, if you translate:

  • “numbers” ↔ “subsets of U”
  • “+” ↔ “∪”
  • “·” ↔ “∩”
  • “0” ↔ “∅”
  • “1” ↔ “U”

the familiar ring axioms turn into the identities that every Venn diagram respects.

A more structural viewpoint

Every subset AU can be identified with its indicator (characteristic) function

χA:U{0,1},χA(x)={1xA0xA.

Writing ordinary arithmetic on {0,1}:

  • pointwise multiplication of indicators corresponds to intersection: χAB(x)=χA(x)χB(x);
  • pointwise addition mod 2 corresponds to symmetric difference, and from that one can build union and complement.

Thus the algebra of all subsets of U is literally the ring ({0,1}U,,) with addition “⊕” = mod-2 sum and multiplication “·” = ∩. What we informally call “multiplying sets” is just multiplying 0-1 functions, which explains why the familiar distributive and absorption rules hold exactly as they do for numbers.

Intuition from counting and probability

  • Counting: if A and B are independent choices, |A||B| counts ordered pairs; intersecting constraints is the combinatorial analogue of requiring all conditions simultaneously, just as multiplying numbers combines factors.
  • Logic: ∩ is the logical AND of membership conditions; AND is the “multiplication” in every Boolean algebra.
  • Measure/probability: for independent events P(A ∩ B) = P(A)·P(B).

Because these perspectives all coincide, we say “intersection behaves like multiplication” not as a metaphor but as an exact algebraic fact: within the Boolean algebra of sets, ∩ is the multiplication operation.

Friday, June 20, 2025

What Patrick McKenzie means by a “Dangerous Professional”

The following are selected posts by Patrick McKenzie @patio11 which bear on his idea of the "Dangerous Professional". Read them and write a comprehensive summary of what his idea is about, with examples of things that such a professional does and says, with context for each.

(The posts are omitted for brevity.)

What Patrick McKenzie means by a “Dangerous Professional”

A Dangerous Professional (DP) is not a hit-man in a suit; it is an ordinary-looking person who has mastered the practical magic of paperwork, procedure, and persuasion. They are “dangerous” only from the perspective of a large organization that hoped to keep things sloppy, verbal, or undocumented. To the victim of a fraud, the customer stuck in a phone-tree, or the junior employee facing “Um — please stop taking notes,” a DP is simply the person you want on your side.

McKenzie’s scattered Twitter threads form an informal field-manual. Taken together they describe a mindset, a toolkit, and a style of speech that turns asymmetric bureaucratic fights into winnable games.


1. Core attitudes

Attitude Explanation Representative quotes / situations
“Get it in writing.” Written records trigger statutes, shot-clocks and institutional accountability. Verbal promises can safely be ignored; signed PDFs and timestamped emails cannot. Gate-agent rebooking; Reg E dispute e-mails; post-meeting “Hi Bob, thanks for meeting — we discussed…” mail.
“Ask for citations.” Force the other side to say which policy, law or contract clause they are relying on. Often they can’t. “Please cite, in writing, your refusal to repay a fraud victim under Regulation E’s ‘no printed receipt’ clause.’”
Document first, argue later. A single contemporaneous diary entry, e-mail, or transcript will beat fuzzy recollections years later. Being told to stop taking notes → hand-wrote a transcript immediately after the meeting.
Use the system’s own rules. Know which regulator, statute, or SLA starts a clock and invoke it deliberately. FDCPA 30-day dispute window; 10-day FOIA appeal timeline; airline “irregular operations” options budget.
Polite, calm, relentless. No table-pounding unless you lack facts or law. A DP sounds boringly professional while making it clear they can escalate. Airline chat: “I’m sure you have options for me.”
Not necessarily a lawyer. Lawyers may be DPs, but anyone who learns the playbook can do the job. “Some lawyers are Dangerous Professionals and some Dangerous Professionals are lawyers, but not all DPs are lawyers.”

2. Characteristic moves & phrases

Move Typical wording Context & purpose
Memorialize the meeting. “Hi Bob, thanks for meeting today. We discussed … Looking forward to working with you.” Locks the oral conversation into an immutable timeline.
Force written authority. “Could you please set forth, in writing, the policy that governs X?” Either they pony up a real document or admit it doesn’t exist.
Invoke the regulator. “Under Regulation E you are required to complete your investigation within 10 business days.” Flips the risk onto the institution’s legal/compliance team.
Escalate by address line. Letters marked Office of the President / Chief Compliance Officer / Investor Relations or sent certified mail, return-receipt requested. Short-circuits the CSR tier and lands on someone who can say “yes.”
Apply the “What are my options?” incantation. Direct, calm request repeated until the agent presses the escalation button. Airline IRROPs, billing disputes, any “computer says no” moment.
Preserve the shot-clock. “I reiterate that you have not performed X. Your clock began on [date of first letter].” Prevents a bureaucracy from resetting its own deadline.
Professional presentation props. A notebook, neatly tabbed binder, diary app with timestamps, or even a FOIA appeal letterhead. Visual signals that you keep records and will use them.

3. Field-tested examples

Domain What the DP did Outcome / rationale
Bank fraud (tap-to-pay scam) Asked bank to cite in writing why Reg E didn’t apply; pointed out that newspapers are interested. Legal & PR risk flips, bank almost always refunds.
FOIA appeal First-time appellant writes a letter whose “load-bearing paragraph” threatens cheap, predictable litigation. Agency promises to respond within statutory timeframe.
Airline IRROPs Calmly repeats “What are my options?”; refuses to guess at alternatives; triggers supervisor override; re-booked on competitor at airline’s expense. Airlines have budgets for this; agent just needed permission.
Medical billing error Drafts letter to provider’s general counsel: invoice, receipt, card statement attached; notes FDCPA obligations. Billing department fixes error rather than escalate.
Payroll tax mismatch Letter “in a tone so polite the paint peels” warns bank that Ministry regulators may be consulted. Forces institution, not customer, to project-manage the clean-up.
Meeting where note-taking banned Continues note-taking, keeps physical control of notebook, immediately diaries that the request was “extraordinary.” Creates contemporaneous evidence and signals unwillingness to be intimidated.
Consumer loans / debt collection Cites FDCPA; demands validation in writing; records start date of dispute. Debt collector must stop until it can prove claim.
Customer-service dead end Buys bank’s “cheapest premium product” to gain elite-tier phone number, then internally transfers to the needed department. Small fee buys access to staff with actual decision authority.

4. Negative space: who the DP isn’t

  • Not a bully. Table-pounding is what lacks facts or law. A DP rarely needs theatrics.
  • Not always competent. McKenzie has met “Dangerous-to-Themselves-and-Others Professionals” whose titles outrun their skills.
  • Not secretive about methods. The “deep magick” works even when everybody knows the spell; the power lies in doing the boring work.

5. Learning the craft

Skill to acquire McKenzie’s tips
Reg-reading & citation. Practice Googling the primary source (“Fannie Mae Seller’s Guide §…”) until you can pull a paragraph in 30 sec.
Write like a DP. Keep templates; use clear subjects; state facts, request, desired timeline. LLMs can draft a passable DP letter now.
Note-taking & diaries. Day One journal, or 1-minute phone videos. Any timestamped medium becomes powerful evidence later.
Channel selection. Pick the communication path that makes their lawyer or compliance officer read your message.
Understand incentives. Know who actually wears financial or regulatory liability inside the org and aim the spotlight there.

6. Why the archetype matters now

  • Cheap generative AI means anyone can summon a respectable DP letter, so institutions that rely on friction (“write us a letter within 30 days”) will face a flood.
  • Regulatory shot-clocks (Reg E, FDCPA, FOIA, FDCPA, etc.) were designed when writing letters was hard. Automation breaks that assumption.
  • Professional veneer is democratizing. LLM-drafted correspondence turns former class-gated advantages (clarity, citations, formatting) into commodities, shifting power toward individual consumers.

In one sentence

A Dangerous Professional is a calm, paperwork-wielding adult who knows which letter, statute, or shibboleth makes a billion-dollar institution clear its throat and say, “Yes ma’am, right away.”

Thursday, June 19, 2025

Square trisection

use code to draw a picture that divides a unit square into three equal parts using two inscribed parabolas, one positive and one negative, such that the vertex of the concave-up parabola is the lower left corner of the square and the vertex of the concave-down parabola is the upper right corner of the square

Here’s why the picture you see cuts the unit square into three equal-area bands:

  • Concave-up parabola y1(x)=x2 has its vertex at (0,0).

    Area below y1=01x2,dx=13.

  • Concave-down parabola y2(x)=x2+2x has its vertex at (1,1).

    Area below y2=01(x2+2x),dx=23.

  • Three equal regions

    • Region A (bottom strip): area =13.
    • Region B (between the two parabolas): 2313=13.
    • Region C (top strip): 123=13.

Because each region occupies 13 of the square’s total area, the two parabolas achieve the desired trisection while meeting the specified vertices. The code above draws the square’s boundary and both parabolic arcs so you can verify the construction visually or adapt it further (e.g., change sampling density, export as SVG, add shading, etc.).

The code was as follows:

import numpy as np
import matplotlib.pyplot as plt

# x-coordinates inside the unit square
x = np.linspace(0, 1, 400)

# Two parabolas that split the square into three equal-area regions
y_up = x**2            # concave-up, vertex at (0, 0)
y_down = -x**2 + 2*x   # concave-down, vertex at (1, 1)

# Draw the unit square
plt.figure()
plt.plot([0, 1], [0, 0])   # bottom
plt.plot([1, 1], [0, 1])   # right
plt.plot([1, 0], [1, 1])   # top
plt.plot([0, 0], [1, 0])   # left

# Plot the parabolas
plt.plot(x, y_up, label=r"$y = x^2$")
plt.plot(x, y_down, label=r"$y = -x^2 + 2x$")

# Formatting
plt.xlim(0, 1)
plt.ylim(0, 1)
plt.gca().set_aspect("equal", adjustable="box")
plt.title("Parabolic trisection of a unit square")
plt.legend()
plt.show()

Wednesday, May 28, 2025

Sum of 2ᵏ, or of k/(2ᵏ) for k∈ℕ∩[1,n]

Prove, using induction, that for every natural number n: 2+22+23++2n=2n+12

Proof by Mathematical Induction:

We are asked to prove that for every natural number n,

2+22+23++2n=2n+12


Step 1: Base Case

Let’s check the base case n=1.

Left-hand side (LHS):

2=2

Right-hand side (RHS):

21+12=222=42=2

✅ The base case holds.


Step 2: Inductive Hypothesis

Assume that the formula holds for some natural number k, i.e.,

2+22+23++2k=2k+12


Step 3: Inductive Step

We need to prove that the formula holds for k+1, i.e.,

2+22+23++2k+2k+1=2(k+1)+12

Start from the left-hand side for k+1:

(2+22+23++2k)+2k+1

Apply the inductive hypothesis to the first part:

(2k+12)+2k+1

Combine like terms:

2k+1+2k+12=22k+12

Simplify the exponent:

2k+22

Check the right-hand side formula for k+1:

2(k+1)+12=2k+22

✅ Matches exactly.


Conclusion:

By the principle of mathematical induction, the formula

2+22+23++2n=2n+12

holds for all natural numbers n.

Prove, using induction, that for every natural number n: 12+222+323++n2n=2n+22n

Proof by Mathematical Induction:

We are asked to prove that for every natural number n,

12+222+323++n2n=2n+22n


Step 1: Base Case

Check the base case n=1.

Left-hand side (LHS):

12=0.5

Right-hand side (RHS):

21+221=232=21.5=0.5

✅ The base case holds.


Step 2: Inductive Hypothesis

Assume that the formula holds for some natural number k, i.e.,

12+222++k2k=2k+22k


Step 3: Inductive Step

Prove that the formula holds for k+1, i.e.,

12+222++k2k+k+12k+1=2(k+1)+22k+1

Start from the left-hand side for k+1:

Apply the inductive hypothesis to the first part:

(2k+22k)+k+12k+1

Express k+12k+1 with denominator 2k to combine terms:

2k+22k+k+12k+1

Express k+12k+1 as:

k+122k=k+12k2=k+12k+1

It doesn't directly combine, so use a common denominator 2k+1 for the fractions.

Express 2 with denominator 2k+1:

2=22k+12k+1=2k+22k+1

Express k+22k with denominator 2k+1:

k+22k=2(k+2)2k+1

Now write the entire left-hand side over denominator 2k+1:

2k+22(k+2)+(k+1)2k+1

Compute the numerator:

2k+22(k+2)+(k+1)

Compute step by step:

  • 2k+2 stays as is.
  • 2(k+2)=2k4
  • +(k+1)

Sum:

2k+22k4+k+1=2k+2k3

The numerator becomes:

2k+2(k+3)

Now express the right-hand side formula for k+1:

Check if it matches:

2(k+1)+22k+1=2k+32k+1=22k+12k+1k+32k+1

Compute numerator:

22k+1=2k+2

So numerator:

2k+2(k+3)

Indeed, matches exactly.


Conclusion:

By the principle of mathematical induction, the formula

12+222++n2n=2n+22n

holds for every natural number n.

Sum of products of consecutive naturals, and sum of the reciprocals of such products

Prove, using induction, that for every natural number n: 12+23+34++n(n+1)=n(n+1)(n+2)3

Let's prove the statement by mathematical induction.


Statement:

For every natural number n1:

12+23+34++n(n+1)=n(n+1)(n+2)3


Step 1: Base Case

Test for n=1.

Left-hand side (LHS):

12=2

Right-hand side (RHS):

1(1+1)(1+2)3=1233=63=2

✅ The base case holds.


Step 2: Inductive Hypothesis

Assume the formula holds for n=k, i.e.,

12+23++k(k+1)=k(k+1)(k+2)3


Step 3: Inductive Step

Show it holds for n=k+1.

Left-hand side for n=k+1:

(12+23++k(k+1))+(k+1)(k+2)

Using the inductive hypothesis:

k(k+1)(k+2)3+(k+1)(k+2)

Factor out (k+1)(k+2):

(k+1)(k+2)(k3+1)

Combine the terms inside the parentheses:

(k+1)(k+2)k+33

Rearrange:

(k+1)(k+2)(k+3)3

This matches the RHS for n=k+1.


Conclusion:

By mathematical induction, the formula holds for all natural numbers n1:

12+23++n(n+1)=n(n+1)(n+2)3

Prove, using induction, that for every natural number n: 112+123++1n(n+1)=nn+1

Let's prove this formula using mathematical induction.


Statement:

For every natural number n1:

112+123++1n(n+1)=nn+1


Step 1: Base Case

Test for n=1.

Left-hand side (LHS):

112=12

Right-hand side (RHS):

11+1=12

✅ The base case holds.


Step 2: Inductive Hypothesis

Assume the formula holds for n=k, i.e.,

112+123++1k(k+1)=kk+1


Step 3: Inductive Step

Show it holds for n=k+1.

Left-hand side for n=k+1:

(112++1k(k+1))+1(k+1)(k+2)

Apply the inductive hypothesis:

kk+1+1(k+1)(k+2)

Get a common denominator:

k(k+2)+1(k+1)(k+2)

Compute the numerator:

k(k+2)+1=k2+2k+1=(k+1)2

So the sum becomes:

(k+1)2(k+1)(k+2)

Cancel one (k+1) from numerator and denominator:

k+1k+2

This matches the RHS for n=k+1:

k+1(k+1)+1=k+1k+2


Conclusion:

By mathematical induction, the formula holds for all natural numbers n1:

112+123++1n(n+1)=nn+1

Proof that all and only perfect squares have an odd number of different factors

Show that a natural number has an odd number of different factors if, and only if, it is a perfect square.

Proof: A natural number has an odd number of different factors if and only if it is a perfect square.


Step 1: Prime Factorization Approach

Let’s express a natural number n in terms of its prime factorization:

n=p1a1p2a2pkak

where p1,p2,,pk are distinct prime numbers and a1,a2,,ak are non-negative integers.


Step 2: Total Number of Factors Formula

The total number of positive factors of n is given by the formula:

Number of factors=(a1+1)(a2+1)(ak+1)


Step 3: When is the Number of Factors Odd?

The product of numbers (a1+1)(a2+1)(ak+1) is odd if and only if each (ai+1) is odd, because the product of odd numbers is odd, and if any factor is even, the whole product is even.

A number (ai+1) is odd if and only if ai is even (since an even number plus 1 is odd).


Step 4: Link to Perfect Squares

  • If all exponents ai are even, then the number is a perfect square, because:

n=(p1a1/2p2a2/2pkak/2)2

  • Conversely, if the number is a perfect square, then all exponents in its prime factorization must be even.

Step 5: Conclusion

  • A natural number has an odd number of positive divisors if and only if it is a perfect square.

✔️ Q.E.D.

Why is the number of factors (a1+1)(a2+1)(ak+1)?

Excellent question! Let’s break down why the number of factors of a natural number is given by:

(a1+1)(a2+1)(ak+1)

Reasoning:

Suppose a natural number n has prime factorization:

n=p1a1p2a2pkak

🔍 How do we form a factor of n?

A factor of n is a number that divides n exactly. To construct a factor, you can choose:

  • Any exponent for p1 between 0 and a1 (inclusive),
  • Any exponent for p2 between 0 and a2 (inclusive),
  • ...
  • Any exponent for pk between 0 and ak (inclusive).

🔢 Counting the choices:

  • For prime p1, there are (a1+1) choices (exponents 0,1,2,,a1).
  • For prime p2, there are (a2+1) choices.
  • ...
  • For prime pk, there are (ak+1) choices.

🔗 Total number of distinct factors:

Each choice of exponent is independent, so the total number of different factors is the product:

(a1+1)(a2+1)(ak+1)


📜 Example to illustrate:

Let’s take n=12.

  • Prime factorization: 12=22×31.
  • Number of factors:

(2+1)(1+1)=3×2=6

  • The factors are: 1,2,3,4,6,12 — 6 factors.

✔️ The formula holds perfectly.


🚩 Conclusion:

The formula works because forming a divisor is about independently choosing each exponent from its possible range 0 to ai for every prime factor.

Would you like me to visualize this with a tree diagram or table?

Proof that, ∀n∈ℕ, there are n consecutive composite numbers

Prove that, for every natural number n, there are n consecutive composite numbers.

Proof: For every natural number n, there are n consecutive composite numbers.


Step 1: Construct the sequence.

Consider the number:

N=(n+1)!

where (n+1)! is the factorial of n+1, meaning:

(n+1)!=(n+1)n(n1)21

Step 2: Build the sequence of n consecutive numbers:

N+2,N+3,N+4,,N+(n+1)

This is a sequence of n consecutive numbers (from N+2 to N+(n+1)).

Step 3: Prove each number is composite.

Consider any number in the sequence:

N+kwherek=2,3,4,,n+1

Note that (n+1)! is divisible by k because kn+1 and the factorial contains every integer up to n+1 as factors.

Therefore:

N+k=(n+1)!+k

is divisible by k (since (n+1)! is divisible by k).

Check whether this number is composite:

  • It is greater than k (because (n+1)!(n+1)n21, which is obviously larger than k for all n1).
  • It has k as a divisor other than 1 and itself.

Thus, every number in the sequence is composite.

Step 4: Conclusion.

For every natural number n, there exists a sequence of n consecutive composite numbers — specifically the numbers:

(n+1)!+2,(n+1)!+3,,(n+1)!+(n+1)

This proves the statement.

Bertrand postulate proof sketch

Prove that ∀n∈ℕ(n>1⟹∃p∈ℙ(n<p<2n)).

Below is a classical proof of

nN,n>1pP with n<p<2n,

first conjectured by Bertrand in 1845 and proved (independently) by Chebyshev in 1852. It is often called Bertrand’s postulate.


1. Chebyshev’s θ-function

Define

θ(x)=pxpprimelnp.

Chebyshev showed by completely elementary means (bounding factorials via products) that there are absolute constants A,B>0 such that for all x2,

Axθ(x)Bx.

One may take for instance

0.92xθ(x)1.11x,

for every x2. (The proof is a straightforward—but somewhat lengthy—analysis of the prime‐power factors of n!.)


2. From θ to “a prime in (n,2n)

Observe that

θ(2n)θ(n)=n<p2nlnp.

If there were no prime in the open interval (n,2n], then θ(2n)θ(n)=0. But by Chebyshev’s bounds,

θ(2n)θ(n)0.92(2n)1.11n=(1.841.11)n=0.73n>0(n>1).

Hence

n<p2nlnp>0,

so there must be at least one prime p(n,2n]. This completes the proof.∎


Historical remarks

  • Chebyshev’s original 1852 proof bounds factorials n!2πn(n/e)n from above and below elementarily, then translates those bounds into Axθ(x)Bx.
  • In 1932, Erdős found a shorter “combinatorial” proof using properties of the central binomial coefficient (2nn).
  • The statement is often referred to as Bertrand’s postulate, though it is now a theorem.