Yasin Hassan Project 1

We are trying to find the points of intersection using Newton's method.

Our equations were f1 = @(x,y) ((x^2)/9) + ((x*y)/3) + y^2 -1 and f2 = @(x,y) (x^2) - 1 - y

The points of intersection are z = (1.30700318774633, 0.70825733277904) , a = (-1.46641876551688, 1.15038399586005), c = (0,-1), and d = (-0.17391781449563, -0.96975259380106)


Project 1 Code