Problem
I have the set $D$ defined as:
$$ D=\{(x,y)|x\ge 0, 0 \le y \le 64-81x^2 \} $$
I want to compute the area of this set $A(D)$
Attempt to solve
You could try to solve the area of this set by Riemann sums / integral. First problem is if $x\ge 0$ always and $0 \le y \le 64-81x^2$ $y$ needs to be less than or equal to $64-81x^2$ but when $x$ is positive $64-81x^2$ is always negative?
$0\le y\le64-81x^2$ cannot be true when $x\ge 0$
How do you compute something like this?
Not "always". To have $y\geq0$, you need $64-81x^2\geq0$, that is $$ x^2\leq\frac{64}{81}, $$ which means that $x\leq 8/9$. So your area is $$ \int_0^{8/9}(64-81x^2)\,dx=\frac{64\times 8}9-\frac{81\times(8/9)^3}{3} =64\times8\left(\frac19-\frac1{27}\right)=\frac{1024}{27}. $$
By the way, this has nothing to do with improper integrals.