Quadratic terms are quite common in regression. Here is an example from John Fox (http://www.jstatsoft.org/v08/i15/paper)
library(car) # For data
library(splines) # For bs()
library(effects) # For plotting
data(Prestige)
prestige.mod <- lm(prestige ~ log(income) + bs(education, df=3) + poly(women, 2), data=Prestige)
summary(prestige.mod)
test <- plot(all.effects(prestige.mod, default.levels=50))
Is there any command in R to get the minimum/maximum of a quadratic effect right away without deriving in manually/plotting it?