# specify the model formula with only fixed or population-level terms
formula = dv ~ 1 + condition
# and now add varying intercepts per participant
formula = dv ~ 1 + condition +
(1 | participant)
# and now add varying intercepts and slopes per participant
formula = dv ~ 1 + condition +
(1 + condition | participant)