Example 1

The surface is the plane containing the vectors v1, v2, and v3 below.


  Clear[F,S,g,uN,v1,v2,v3]
  F[x_,y_,z_]:={x^2,y x,z x}
  v1={1,0,0};
  v2={0,2,0};
  v3={0,0,3};

To get a normal vector we need two vectors on the surface. They are easy enough to get here: v2-v1 and v3-v1.


  vp=vectorPlot[{v1,v1},{v2-v1,v3-v1}];

This is probably a more common view.


  Show[vp,AxesLabel->{"x","y","z"}, ViewPoint->{3,2,1}];


  uN=Cross[v2-v1,v3-v1]/norm[Cross[v2-v1,v3-v1]]

We need the surface z=S(x,y).

Recall that uN={6/7, 3/7, 2/7}.
So,the plane is 6/7(x-1)+3/7 y +2/7 z=0
OR
z=3-3x-3/2 y


  S[x_,y_]:=3-3 x-3/2 y
  g[x_,y_,z_]:=S[x,y]-z

This is only if you want to see a picture of the surface!

This is only if you want to see ...

We now need the region to integrate. Projecting onto the x y plane we get the region enclosed by x=0, y=0, and the line y=-2(x-1):


  dA=norm[grad3[g][x,y,z]]


  integrand=(F[x,y,S[x,y]].uN)dA


  Simplify[integrand]


  Plot[-2(x-1),{x,0,1},PlotStyle->{RGBColor[1,0,0]},AxesLabel->{"x","y"}];


  Integrate[integrand,{x,0,1},{y,0,-2(x-1)}]

Up to Surface Integrals