I am trying to figure out how to fix this error. I should be able to input 3 numbers and it will solve for the X value of the quadratic equation.
-module(main).
-export([main/3]).
main(A, B, C) ->
[(-B + math:sqrt(B * B - 4 * A * C)) / (2 * A), (-B - math:sqrt(B * B - 4 * A * C)) / (2 * A)].
Here is the result that I got after running the code.
** exception error: an error occurred when evaluating an arithmetic expression in function math:sqrt/1 called as math:sqrt(-4) in call from main:main/3 (/Users/ianrogers/IdeaProjects/CS381 Projects/src/main.erl, line 14)
You must test the number before evaluating the square root. As you do it when calculating by yourself.