Skip to content

Introduction to Quantum Biology

Quantum biology is the application of quantum mechanics and theoretical chemistry to biology.It explores quantum effects in biological processes, representing a fascinating frontier between fundamental physics and life sciences. Sources: [1]

Note: Information reflects 2025 standards. Verify references and course availability periodically.

What is Quantum Biology?

Quantum biology investigates how quantum phenomena - such as superposition, entanglement, and tunneling - can influence biological processes at molecular and cellular scales.

Fundamental Principles

  • Quantum Superposition: Simultaneous states until measurement
  • Entanglement: Non-local correlations between particles
  • Quantum Tunneling: Transition through energy barriers
  • Coherence: Maintenance of quantum properties

Applications in Cancer

Quantum Tunneling in DNA Mutations

Quantum tunneling has been proposed as a mechanism that could contribute to spontaneous mutations in DNA, which could lead to cancer development. Sources: [2], [3]

Proposed Mechanism:

  • Proton Tunneling: Transfer of protons through energy barriers
  • Spontaneous Mutations: Genetic changes without apparent external cause
  • Genomic Instability: Accumulation of mutations over time

Quantum Entanglement and Cellular Signaling — Lack of Evidence

Important: Associating quantum entanglement with signal transduction, gene regulation, apoptosis, or cell proliferation has no current experimental support. This claim does not appear in peer-reviewed consensus literature, and was not corroborated by leading quantum biology researchers (UNICAMP/Harvard level) at the UFSCAR/IEA-E Workshop on Quantum Biology (2025). Listing these processes as "affected by quantum entanglement" risks misrepresenting the state of the science and conflating quantum biology with unsubstantiated claims.

Quantum entanglement has been observed in photosynthetic systems and is theorized in specific biological contexts (e.g., radical pair mechanism in magnetoreception, and hypothetically in neural microtubules — the latter being explicitly described as "quite controversial" by specialists). Its role in oncological cell signaling pathways remains an open and unverified hypothesis. Sources: [4]

Processes claimed to be affected (NO experimental evidence):

  • Signal Transduction: No demonstrated quantum entanglement mechanism
  • Gene Regulation: No demonstrated quantum entanglement mechanism
  • Apoptosis: No demonstrated quantum entanglement mechanism
  • Proliferation: No demonstrated quantum entanglement mechanism

This section should be interpreted as speculative frontier only, not established science.

Magnetoreception — Radical Pair Mechanism

Magnetoreception in migratory birds is one of the most experimentally robust phenomena in quantum biology, confirmed since the 1970s and extensively studied since. Sources: [5]

Mechanism: The radical pair mechanism in cryptochrome proteins allows birds to sense Earth's magnetic field. Photons (UV/blue/cyan light) create spin-correlated radical pairs whose quantum states are sensitive to magnetic field direction, providing a biological compass.

Key Experimental Evidence:

  • European Robin (Erithacus rubecula): magnetic compass function depends on light wavelength — UV/blue/cyan light enables navigation; yellow/red light disables it, consistent with cryptochrome activation.
  • Neural pathway experiments (severing beak-derived magnetite connections) showed the cryptochrome-based mechanism — not magnetite — is the primary compass.
  • Cryptochrome proteins are present in all multicellular organisms, including humans, where they regulate circadian rhythms.

Why it matters for HackCancer: Radical pair chemistry and spin dynamics in biological systems are active areas of research. Cryptochromes' role in circadian regulation intersects with known cancer risk factors (circadian disruption is a recognized carcinogen by IARC).

Photosynthesis-Inspired Cancer Therapies

Understanding quantum processes in photosynthesis has inspired light-based cancer therapies. Sources: [6]

Established Therapeutic Applications:

  • Photodynamic Therapy (PDT): FDA-approved; photosensitizers activated by specific wavelengths generate reactive oxygen species that destroy tumor cells. Quantum mechanism: electronic excitation and energy transfer.
  • Photothermal Therapy: Selective heating of tumors via light-absorbing nanoparticles
  • Biophotonics: Manipulation of cellular processes with light

Photobiomodulation (PBM) — Established Quantum Mechanism with Oncological Applications

Photobiomodulation is a distinct and well-established light-based intervention with a clearly elucidated quantum mechanism, currently absent from most quantum biology reviews in cancer contexts. Sources: [7]

Mechanism: Specific wavelengths (red/near-infrared) are absorbed by cytochrome c oxidase (Complex IV) of the mitochondrial respiratory chain. This quantum absorption event increases ATP production (demonstrated up to ~90% increase in target tissue), triggering downstream effects:

  • Increased synthesis of endogenous analgesics, anti-inflammatory agents, and healing factors
  • Analgesic effects comparable to morphine demonstrated in mice via transcranial photobiomodulation

Oncological Applications (evidence-based):

  • Oral mucositis from chemotherapy — clinical evidence supports PBM for prevention and treatment
  • Post-mastectomy lymphedema — recognized application with clinical trials
  • Pain management in cancer patients — multiple RCTs

PBM is not PDT: it does not destroy cells. It modulates cellular energy metabolism through a quantum photon-absorption mechanism. Its distinction from pseudoscientific "quantum healing" is that it operates at specific, measurable wavelengths with characterized molecular targets.

Experimental Evidence

Photosynthesis Studies

  • Electronic Coherence: Maintenance of quantum states in proteins
  • Energy Transfer: High (sometimes near‑unity) quantum efficiency reported in specific systems and conditions; causality with coherence remains debated. Sources: [8], [9]
  • Lifetime: Coherence reported up to hundreds of femtoseconds in some complexes at physiological or cryogenic temps. Sources: [10]

DNA Research

  • Proton Tunneling: Evidence in nitrogenous bases
  • Coherence in Mutations: Possible role in replication errors
  • Quantum Structure: Electronic properties of DNA

Computational Applications

Quantum Simulations

python
# NOTE: Educational example only; not a validated biological model.
import numpy as np
from scipy.linalg import expm
import matplotlib.pyplot as plt

def quantum_evolution(hamiltonian, initial_state, time_points):
    """Simulates quantum evolution of a system."""
    states = []
    
    for t in time_points:
        # Time evolution operator
        U = expm(-1j * hamiltonian * t)
        state = U @ initial_state
        states.append(state)
    
    return np.array(states)

# Example: Two-level system (like a DNA base)
H = np.array([[1, 0.1], [0.1, -1]])  # Hamiltonian
psi0 = np.array([1, 0])  # Initial state
t = np.linspace(0, 10, 100)

# Time evolution
states = quantum_evolution(H, psi0, t)

# Probability of finding system in excited state
prob_excited = np.abs(states[:, 1])**2

plt.plot(t, prob_excited)
plt.xlabel('Time')
plt.ylabel('Excited State Probability')
plt.title('Quantum Evolution of Biological System')
plt.grid(True)
plt.show()

Tunneling Modeling

python
# NOTE: Educational example only; parameter values are illustrative.
import numpy as np

def tunneling_probability(barrier_height, barrier_width, particle_energy, mass):
    """Calculates quantum tunneling probability."""
    hbar = 1.054571817e-34  # Reduced Planck constant
    
    if particle_energy >= barrier_height:
        return 1.0
    
    # Decay coefficient
    kappa = np.sqrt(2 * mass * (barrier_height - particle_energy)) / hbar
    
    # Tunneling probability
    T = np.exp(-2 * kappa * barrier_width)
    
    return T

# Toy parameters for a tunneling calculation.
# Do not interpret this as a measured DNA base-pair model.
barrier_height = 0.5  # eV
barrier_width = 0.1   # nm
particle_energy = 0.3 # eV
proton_mass = 1.67e-27  # kg

prob = tunneling_probability(barrier_height, barrier_width, particle_energy, proton_mass)
print(f"Tunneling probability: {prob:.2e}")

Current Research

Research Areas

  1. Coherence in Proteins: How proteins maintain quantum properties
  2. Tunneling in Enzymes: Mechanisms of enzymatic catalysis
  3. Testing quantum correlations in biomolecules: basic research only; no validated role in oncologic cell signaling
  4. Biological Quantum Computing: Information processing in cells

Technical Challenges

  • Temperature: Quantum effects are more evident at low temperatures
  • Scale: Quantum phenomena are more important at atomic scales
  • Measurement: Observation of quantum effects in biological systems
  • Modeling: Complexity of biological systems

Experimental Methodologies

Spectroscopic Techniques

  • Transient Absorption Spectroscopy: Measurement of excited states
  • Circular Dichroism Spectroscopy: Protein structure
  • Fluorescence Spectroscopy: Electronic state dynamics
  • Infrared Spectroscopy: Molecular vibrations

Advanced Microscopy

  • Atomic Force Microscopy: Surface structure
  • Scanning Tunneling Microscopy: Electronic structure
  • Super-resolution Microscopy: Images below diffraction limit
  • Correlation Microscopy: Particle dynamics

What is NOT Quantum Biology

The researchers at the UFSCAR/IEA-E Workshop (2025) explicitly warned against conflating quantum biology with pseudoscience. This distinction is essential for the HackCancer project.

Quantum biology deals exclusively with experimentally demonstrated quantum phenomena (tunneling, coherence, radical pairs) providing functional advantages to biological systems at the molecular/atomic scale.

The following are NOT quantum biology:

  • "Quantum healing" — no scientific basis; no defined molecular mechanism
  • "Quantum homeopathy" or "quantum energy fields" in wellness products
  • Claims that consciousness, meditation, or intention manipulate quantum states in macroscopic biology
  • Using "quantum" as a marketing term for supplements, therapies, or devices without a specified quantum mechanism

The test: A legitimate quantum biology claim must specify (1) which quantum phenomenon, (2) in which molecule/system, (3) with what measurable functional consequence, and (4) with experimental evidence. Vague appeals to "quantum effects in cells" without this specificity are not quantum biology.

Learning Resources

Books and Introductions

Scientific Papers

Online Courses

Community Contributions

Research Areas

  1. Computational Modeling: Development of quantum algorithms
  2. Data Analysis: Processing of experimental data
  3. Visualization: Creation of visual representations of quantum phenomena
  4. Education: Development of educational materials

How to Contribute

  • Review literature: Analyze recent scientific papers
  • Develop code: Create simulations and models
  • Document discoveries: Share insights and observations
  • Collaborate: Connect with other researchers

Future of Quantum Biology

Potential Applications (Long-Term, Speculative)

The following represent research directions and long-term speculation — they are not near-term clinical realities. Experts at UFSCAR/IEA-E (2025) explicitly emphasized that translating quantum biology insights to personalized oncology remains distant and unconfirmed.

  • Personalized Medicine based on quantum properties: Highly speculative; no validated clinical pathway
  • Early Diagnosis via molecular quantum signatures: Active area of basic research; pre-clinical only
  • Targeted Therapies leveraging quantum mechanisms: Quantum simulation for drug design is advancing (pre-clinical)
  • Prevention via quantum-informed intervention: No demonstrated approach yet

Future Challenges

  • Experimental Validation: Confirmation of quantum effects in living systems
  • Clinical Application: Translation of discoveries to treatments
  • Education: Training of professionals in the field
  • Collaboration: Integration between physicists, biologists, and physicians

Quantum biology represents a new frontier in understanding the fundamental mechanisms of life and may provide valuable insights for developing new strategies against cancer.


References

  1. Quantum biology definition and scope: review articles (e.g., Royal Society Interface 2018) and Wikipedia overview for lay framing.
  2. Proton tunneling in DNA bases and mutation mechanisms: Nature Communications 2022 (s42005‑022‑00881‑8); SciAm explainer.
  3. Additional theoretical/experimental support for tunneling effects in DNA (e.g., ACS J. Phys. Chem. Lett. 2022 2c03171; PMC6712085).
  4. Overviews on quantum phenomena in biology and current debates (e.g., PMC4165465; rsif.2018.0640).
  5. Radical pair mechanism in cryptochrome and avian magnetoreception: Ritz et al. (2000); Schulten group reviews; Hore & Mouritsen, Annual Review of Biophysics 2016. Workshop evidence: UFSCAR/IEA-E Workshop on Quantum Biology, 2025 (Prof. Marcos César de Oliveira, UNICAMP).
  6. Photodynamic therapy reviews and applications (Frontiers in Chemistry 2022; clinical overviews 2024–2025).
  7. Photobiomodulation mechanism (cytochrome c oxidase): Hamblin MR, Photobiomodulation in the Brain, 2019; CAPS 2015 (mechanism elucidation); clinical applications in mucositis (Multinational Association of Supportive Care in Cancer guidelines). Workshop evidence: UFSCAR/IEA-E Workshop, 2025 (Prof. Marcelo Pires de Souza, IFS/Harvard).
  8. Discussions on efficiency and coherence in photosynthesis: reviews questioning direct efficiency gains (e.g., PMC7888942) vs. reports of high quantum efficiency.
  9. Context‑dependent efficiency analyses (e.g., S0303264720301027) emphasizing conditions and definitions.
  10. Coherence in photosynthetic complexes (e.g., PNAS 2010 1005484107) and related spectroscopy studies.

Early public release. Content evolves through continuous review. Questions: [email protected] · CC BY 4.0 where applicable.