Science and build notes
What binaural beats can (and can't) actually do - and why we built neur0tide around the difference
We read 500+ studies on binaural beats. Here's the honest version: measurable effects on anxiety and some cognitive tasks, a contested "brainwave tuning" story, and an app that respects the difference.
Binaural beats are easy to oversell. Search around for a few minutes and you will find claims that a tone can reprogram your brain, force you into an alpha state, fix sleep, erase anxiety, or unlock perfect focus. That is not how we talk about neur0tide.
Before building the app, we mapped the research: 513 on-topic peer-reviewed records from 1916 through 2026, including 7 meta-analyses, 12 systematic reviews, and 112 randomized or clinical trials. The honest version is more interesting than the hype. Binaural beats are associated with measurable effects on mood, anxiety, and some cognitive tasks in controlled studies. The popular claim that they "tune your brainwaves" to a target frequency is scientifically contested.
That distinction shaped the product.
First, what is a binaural beat?
A binaural beat starts with two simple tones. One tone goes to the left ear, and a slightly different tone goes to the right ear. If the left ear receives 191.5 Hz and the right ear receives 200.5 Hz, the difference is 9 Hz. With headphones, many listeners perceive a slow beating or pulsing quality even though there is no separate 9 Hz tone in the audio file.
That difference frequency is why people talk about "alpha," "theta," or "beta" beats. The risky leap is turning that into a guaranteed brain-state claim. Your auditory system can respond to rhythmic sound, but the evidence does not reliably show whole-brain entrainment at the beat frequency.
So neur0tide uses the researched bands, but we describe them by use case: Focus, Memory, Relax, and Sleep.
What the evidence supports best
Relaxation and anxiety are the strongest part of the literature. The evidence map found 110 papers in this domain, including 3 meta-analyses, 5 systematic reviews, and 48 randomized trials. A lot of the work comes from a practical, high-anxiety setting: patients listening before surgery.
One landmark randomized controlled trial studied binaural-beat audio and pre-operative anxiety in patients undergoing general anesthesia (Padmanabhan et al., 2005). A later 2025 meta-analysis of perioperative trials reported lower anxiety versus blank audio controls across 14 trials and 1,047 participants (DOI 10.1016/j.ctim.2025.103299). The effect estimate was large, but the studies varied a lot, so we do not turn that into a guarantee.
This is why Relax is the wave we are most comfortable foregrounding. The right claim is not "treats anxiety." It is: binaural beats have their strongest evidence as a way to support relaxation.
Focus and memory are promising, but more modest
The focus and memory story is positive, but thinner. Across memory, learning, attention, and general cognition, the research points to small-to-medium average effects. A 2022 meta-analysis on memory and attention reported an overall effect around g = 0.40 (DOI 10.1007/s00426-022-01706-7). A broader 2018 meta-analysis across cognition, anxiety, and pain reported g = 0.45 (DOI 10.1007/s00426-018-1066-8).
That is enough for "may support." It is not enough for "proven to boost your productivity" or "makes you smarter." In the app, Focus and Memory are built around the bands researchers actually study, but the copy stays restrained.
Sleep is popular, but not settled
Sleep is one of the most common reasons people look for binaural beats. It is also one of the places where we have to be most careful.
The evidence map found 37 sleep papers and 11 randomized trials, but no dedicated sleep meta-analysis. Some studies are encouraging. One controlled study looked at binaural beats with ASMR for sleep induction (DOI 10.3389/fnhum.2019.00425), and another studied a 3 Hz beat during sleep (DOI 10.3389/fnhum.2018.00387).
But the trial evidence is not uniformly positive. A 2019 randomized double-blind study on subclinical insomnia found minimal effects and no significant between-group difference on the Insomnia Severity Index (DOI 10.1097/jcp.0000000000001097).
That is why neur0tide's Sleep wave is framed as a calm, screen-dark wind-down soundscape. It is not sold as an insomnia fix.
The brainwave-tuning story is the shaky part
The biggest claim in this category is also the one we avoid: that binaural beats tune or synchronize your brainwaves to the target frequency.
The 2023 systematic review by Ingendoh et al. is the key paper here (DOI 10.1371/journal.pone.0286023). It reviewed EEG studies on the entrainment hypothesis and found an inconsistent picture: five studies reported results in line with the hypothesis, eight contradicted it, and one was mixed.
That does not mean binaural beats do nothing. It means the popular mechanism is unresolved. The way you feel during a session may be affected by ordinary, plausible mechanisms: settling into a timed ritual, masking distracting noise, shifting attention, reducing arousal, or simply taking ten minutes with headphones on.
We think that is still useful. It just deserves honest language.
How neur0tide generates the waves
neur0tide does not stream audio. It generates it on the device. The app's audio core is a small oscillator model that runs through AVAudioEngine. For the binaural mode used in v1, each audio frame is built from two sine waves:
leftHz = carrierHz - (targetHz / 2)
rightHz = carrierHz + (targetHz / 2)
leftSample = sin(leftPhase) * amplitude
rightSample = sin(rightPhase) * amplitude
The phases advance every sample according to the current sample rate. For a 9 Hz Relax wave with a 196 Hz carrier, the app plays 191.5 Hz to one ear and 200.5 Hz to the other. For a 16 Hz Focus wave with a 228 Hz carrier, it plays 220 Hz and 236 Hz.
| Wave | Target beat | Carrier |
|---|---|---|
| Focus | 16 Hz | 228 Hz |
| Memory | 12 Hz | 216 Hz |
| Relax | 9 Hz | 196 Hz |
| Sleep | 3 Hz | 174 Hz |
Parameter changes are never jumped abruptly. The app ramps target frequency, carrier frequency, and amplitude over two seconds with a smooth curve. It also keeps hard safety caps in the audio layer: target beat frequency is clamped to 1...40 Hz, carrier frequency to 110...440 Hz, and amplitude to 0...0.22.
That is less dramatic than most marketing copy in this space. It is also the point. The app should feel calm because the audio is stable, conservative, and predictable.
Privacy is part of the design
neur0tide has no accounts, analytics, ads, or network calls. Session preferences and optional feedback stay on your iPhone. The feedback loop is there for future on-device personalization, not surveillance.
That privacy posture is related to the science posture. If the research says effects vary from person to person, the right response is not to make louder claims. It is to build a quiet app that helps you notice what works for you without uploading your state to someone else's server.
Why we built around the difference
The app is called neur0tide because the category is built around waves. But the product is not built around pretending we can force your brain into a state.
It is built around a narrower, more defensible idea: rhythmic headphone audio may support relaxation, attention, and wind-down for some people; the evidence is strongest for relaxation; and the mechanism is still being studied.
Start with Relax. Use headphones. Keep the volume comfortable. Treat it as a wellness ritual, not a medical intervention.
That is the version of binaural beats we can stand behind.