I wanted to calculate the surface of $$\{(x,y,z) \in \mathbb{R}^3 \mid x^2+y^2<1, x+y+z=1\}$$
but to calculate it, I need a parametrization.
My first attempt was to just put: $y=\sqrt{1-x^2}, z = 1 - x - \sqrt{1-x^2}$
so I get the parametrization $$(x,\sqrt{1-x^2}, 1 - x - \sqrt{1-x^2}),$$ but I also have to consider $$(x,-\sqrt{1-x^2}, 1 - x + \sqrt{1-x^2}),$$
is this correct?
For a surface in 3D space, parametrization needs two parameters. (a curve needs one parameters.) You can use (x, y) as two parameters.
The surface area is, $$S=\iint \limits_D \sqrt {f_x^2+f_y^2+1} dxdy$$
Here function $f$ is defined as, $$z=f(x,y)=1-x-y$$ and the domain is the circle $$x^2+y^2<1$$
This gives your the answer, $$\sqrt3 \pi$$