136k views
0 votes
What two numbers multiply to get 24 and add to get 5

User Airos
by
7.4k points

2 Answers

4 votes

Answer:

Explanation:

function finder($add,$product) {

$inside_root = $add*$add - 4*$product;

if($inside_root >=0) {

$b = ($add + sqrt($inside_root))/2;

$a = $add - $b;...

User Vidi
by
5.9k points
5 votes

Answer:

-3 and 8

Explanation:

User Rizwan Kassim
by
5.4k points