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

asked
User Airos
by
8.9k 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;...

answered
User Vidi
by
8.0k points
5 votes

Answer:

-3 and 8

Explanation:

answered
User Rizwan Kassim
by
7.8k points

No related questions found

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.