Learn R Programming

migest (version 1.8.5)

quadratic_eqn: Solutions from the quadratic equation

Description

General function to solve classic quadratic equation: $$ a x^2 + b x + c = 0 $$

Usage

quadratic_eqn(a, b, c)

Arguments

a

Numeric value for quadratic term of x.

b

Numeric value for multiplicative term of x.

c

Numeric value for constant term.

Value

Vector of two values corresponding to the roots for the quadratic equation.

Examples

Run this code
# NOT RUN {
quadratic_eqn(a = 2, b = 4, c = -6)
# }

Run the code above in your browser using DataLab