The answer for this is 16.77
Answer:
<h3>
34, 35</h3>
Step-by-step explanation:
z - some integer
then the consecutive integer would be:
z+1, (or z-1)
the sum is 69 so:
z + z+1 = 96
2z = 68
z = 34
z+1 = 34 + 1 = 35
(or:
z + z-1 = 69
2z = 70
z = 35
z-1 = 35 - 1 = 34)
We have a "rectangular" double loop, meaning that both loops go to completion.
So there are 3*4=12 executions of t:=t+ij.
Assuming two operatiions per execution of the innermost loop, (i.e. ignoring the implied additions in increment of subscripts), we have 12*2=24 operations in all.
Here the number of operations (+ or *) is exactly known (=24).
Big-O estimates are used for cases with a varying scale of operations, governed by a variable (usually n) to indicate the sensitivity of the number of operations relative to a change in the size of n.
Here we do not have a scale, nor n is defined. The number of operations is constant and known at 24. So a variable is required to find the big-O estimate.
Answer:
Step-by-step explanation:
(9x-1)^-1/2 - (x+2)(9x-1)^-1/2
= (9x-1)^-1/2( 1 - (x + 2))
= (9x-1)^-1/2(-1 - x)
= -(x + 1)(9x-1)^-1/2
= -(x + 1) / (9x-1)^1/2
Answer:
Explanation:
We must write this equation in the form
(
x
−
a
)
2
+
(
y
−
b
)
2
=
r
2
Where
(
a
,
b
)
are the co ordinates of the center of the circle and the radius is
r
.
So the equation is
x
2
+
y
2
−
10
x
+
6
y
+
18
=
0
Complete the squares so add 25 on both sides of the equation
x
2
+
y
2
−
10
x
+
25
+
6
y
+
18
=
0
+
25
=
(
x
−
5
)
2
+
y
2
+
6
y
+
18
=
0
+
25
Now add 9 on both sides
(
x
−
5
)
2
+
y
2
+
6
y
+
18
+
9
=
0
+
25
+
9
=
(
x
−
5
)
2
+
(
y
+
3
)
2
+
18
=
0
+
25
+
9
This becomes
(
x
−
5
)
2
+
(
y
+
3
)
2
=
16
So we can see that the centre is
(
5
,
−
3
)
and the radius is
√
16
or 4