I have a problem with the following question: how many points belong to the quadric $x_0^2+x_1^2+x_2^2+x_3^2=0$ in $\mathbb{P}_3$ over $\mathbb{F}_9$.
How I tried to solve this problem. Here we have $9^4$ sets of $x_i$, but for every set we can choose only 3 first values ($x _0$,$x_1$ and $x_2$), then we can count $x_3$ for every triplet. So we have $9^3$ sets. Then for every set of $x _0$, $x_1$, $x_2$, $x_3$ which is solution $ax _0$, $ax_1$, $ax_2$, $ax_3$ is also a solution ($a$ is a non zero element of $\mathbb{F}_9$). So we have $(9^3-1)/8=91$ options. But it is still too much! And I don't know any other ways of counting the amount of points.
Sorry for my English, thank you!
You can try a brute force approach: Simply have a small computer program iterate over all the possible values for your $x_i$. For example in Sage:
You will find 801 combinations. One of them is the null vector. And for each of the other values, you get $9-1=8$ possible representations of each point. So you have 100 points on your quadric. Of course if you already use Sage for finite field arithmetic (as I do because I'm lazy), you can leave the rest to it, too: