Imagine you're a teacher trying to catch a student who memorized the answer key versus one who's genuinely good at the subject. Both get high scores. But here's the tell: the genuinely smart student is confident on easy questions AND hard ones in a pattern that tracks difficulty, while the memorizer is suspiciously confident on specific hard questions that happened to be on the key. The trick isn't checking scores alone — it's checking scores relative to how hard the question was. That's exactly what this paper does, except the "student" is a large language model, the "scores" are token-level prediction losses, and "difficulty" is predictive entropy. The committed claim: using prediction loss alone to detect whether an LLM was trained on a given text fails because it confuses "this text is inherently predictable" with "this text was memorized." By normalizing loss against predictive entropy — how uncertain the model is about each token — you get a score that separates members from non-members with less variance and better discrimination. The authors prove this via a mean-variance analysis showing the entropy correction preserves the expected membership signal while shrinking its variance, then extend the analysis to handle a nonzero mean entropy gap between members and non-members. The architecture is elegant in its simplicity. ETD lives entirely in inference-time scoring — no retraining, no reference models, no auxiliary classifiers. You compute the per-token prediction loss and the per-token predictive entropy from a single forward pass, then combine them into what the authors recognize as a Helmholtz free-energy analog: F = E − TS, where E is the loss, T is a temperature parameter, and S is the entropy. Members have lower "residual free energy" because the model has transferred more of its capacity into predicting those sequences. The temperature T controls how aggressively you discount predictable tokens. This places ETD in the reference-free membership inference family alongside Min-K%, zlib-ratio, and loss-only detectors, but with a principled statistical-mechanical motivation rather than an ad hoc threshold. On the ladder, ETD is benchmarked against a serious roster: loss-only detection, Min-K%, Min-K%++, zlib entropy ratio, Ref-based detection, and several others across WikiMIA, MIMIR, and additional benchmarks using models from Pythia and LLaMA families. The headline numbers are +3.5% average AUROC improvement and +5.1% TPR@5%FPR improvement over the best competing method. These are real but moderate gains — this is an incremental-but-principled advance, not a paradigm shift. The strongest baselines (Min-K%++) were already quite competitive, and ETD doesn't dominate uniformly across every model-dataset pair. Integrity is solid for this type of work. The benchmarks (WikiMIA, MIMIR) are community-standard for membership inference detection. The authors test across multiple model families and scales, which reduces cherry-picking risk. The theoretical analysis gives the method a falsifiable mathematical backbone rather than just empirical tuning. One flag: temperature T is a hyperparameter, and the paper doesn't provide a principled way to set it without validation data — this is a potential overfitting surface that the authors acknowledge but don't fully resolve. The milestone to track: membership inference detection currently operates in a regime where AUROC scores hover in the 55-75% range on hard benchmarks. The field needs detectors that work reliably above 90% AUROC on realistic text lengths to be useful for copyright auditing or data governance at scale. ETD pushes the needle but doesn't cross that threshold. The next real unlock is a detector that works on short passages (under 100 tokens) with AUROC above 85% — we're not there yet. The obvious experiment not run: testing ETD against adversarial evasion — what happens when someone deliberately paraphrases or perturbs training data to evade detection? The authors benchmark on naturally occurring member/non-member splits, but the real-world use case (copyright enforcement, data governance) involves adversarial conditions. My read: this is (a) a genuinely different research thread and (c) being saved for follow-up work that positions ETD in an adversarial robustness framework.