Advertisements
Advertisements
प्रश्न
If `sqrt2` = 1.414, and the square_root() function returns -1.414, does it violate the following specification?
-- square_root (x)
-- inputs: x is a real number , x ≥ 0
-- outputs: y is a real number such that y2 = x
एका वाक्यात उत्तर
उत्तर
No, because (- 1.414)2 = 2, which satisfies input – output relation (y2 = x)
shaalaa.com
Algorithmic Problems
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
When do you say that a problem is algorithmic in nature?
Suppose you want to solve the quadratic equation ax2 + bx + c = 0 by an algorithm.
quadratic_solve (a, b, c)
-- inputs:?
-- outputs:?
You intend to use the formula and you are prepared to handle only real number roots. Write a suitable specification.
x = `(-b ± sqrt(b^2) - 4ac)/(2a)`