Answer:
a.) -1 < x < 5
b.) x <= 1
Step-by-step explanation: Domain is the independent variable (x).
For both question a and b, make sure that the number under the square root does not end up being negative. And the denominator of the fractional number is not equal to zero when variable x is being substituted for any value.
a.) y = √ x + 1 /√ 25 − x^2
Domain : -1 < x < 5
That is the minimum value for x is 0 and the maximum value is 4
b. f(x) = (√ 1 − x ) ln x
Domain : x <= 1
That is, x is less than or equal to 1
The maximum value for x is 1. x can be
1, 0, -1, -2, -3, ..........
I believe the answer is 7.94
the hundredth is the 4
The answer is 28
Hope this helped
In pseudocode
num2guess = random(1,100)
pnum = 0
while (pnum != num2guess) {
pnum = ask_player("What number I'm thinking?")
if (pnum > num2guess) {
print("Too high.")
} else if (pnum < num2guess) {
print("Too low.")
}
}
print("Good job!")