Well, I'm probably wrong here or didn't read the question right, so you probably shouldn't listen to me, but 850,000 and 950,000?
Answer: 12
Step-by-step explanation:
You can find the area of a rectangle that forms around it, and then subtract the little extra triangles. You can form a 5 by 5 square around the points. There are 4 extra little triangles. Two of them have a base and height of 2 and 2. Two of them have a base and height of 3 and 3. So you get the total area of those 4 triangles to be: 2+2+4.5+4.5=13. So 25-13=12.
Answer:
252
Step-by-step explanation:
using a brute force method in c++
#include <stdio.h>
int main(){
int a, b, c, n = 0;
for(a = 1; a <= 9; a++)
for(b = 0; b <= 9; b++)
for(c = 0; c <= 9; c++)
if((a==3 || b==3 || c==3)) n++;
printf("%d\n", n);
}
Well, we need to consider the x and y coordinates of the giben points, and check wether the y coordinate is greater than twice the x coordinate minus 1 (i.e. 2x-1):
- For the first point, the x coordinate is 0. So, 2x-1 = -1. The y coordinate is 2, and 2>-1. So, this point is a solution.
- For the second point, the x coordinate is 4. So, 2x-1 = 7. The y coordinate is 2, and 2<7. So, this point is not a solution.
- For the third point, the x coordinate is 0. So, 2x-1 = -1. The y coordinate is -10, and -10<-1. So, this point is not a solution.
- For the fourth point, the x coordinate is 4. So, 2x-1 = 7. The y coordinate is 1, and 1<7. So, this point is not a solution.
There’s no x value and there’s no y value so your slope will be 0.