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

User Airos
by
8.0k 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
6.4k points
5 votes

Answer:

-3 and 8

Explanation:

User Rizwan Kassim
by
6.0k points
Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.