Write a program in Python with the following: a) Given 3 points (x, y):…

Write a program in Python with the following:

a) Given 3 points (x, y):

Don't use plagiarized sources. Get Your Custom Essay on
Write a program in Python with the following: a) Given 3 points (x, y):…
Get an essay WRITTEN FOR YOU, Plagiarism free, and by an EXPERT!
Order Essay

P1(50.0, 70.0)

P2(-30.0, 10.0)

P3(40.0, -40.0)

b) Calculate the circle that passes through these 3 points;

c) Show information about the points; and

d) Show information about the circle: center and radius.

For the coding, use:

– camel notation

– in-program comments

– logic

– accuracy

– efficiency

Expert Answer

 The implementation is totally mathematical, I have used a class point to declare a point and then rest are functions for calculating the different values. Consider a system of three points (a1,a2),(b1,b2),(c1,c2) .

Now If you know some mathematics then you can easily generate the equation of the circle. Here I am writing three equations which help us to determine the equation of the circle.

d=(a1-b1)(b2-c2)-(b1-c1)(a2-b2)

If d is zero, the points lie on the same line.

u=frac{a1^2-b1^2+a2^2-b2^2}{2}

v=frac{b1^2-c1^2+b2^2-c2^2}{2}

Now, that we have u and v we can go on to have the center i.e. x and y by the following equation

x=frac{u(b2-c2)-v(a2-b2)}{d}

y=frac{v(a1-b1)-u(b1-c1)}{d}

I have implemented that only in the program. Here you go with the program:

class Point :
def __init__( self, x = 0., y = 0 ):
self.x = x #x value of a point
self.y = y # y value of a point

def calculated(a1,a2,b1,b2,c1,c2):
d=((a1-b1)*(b2-c2)) – ((b1-c1)*(a2-b2)) #caculated according to the equation
return d #if zero then no circle can be formed

def calculateu(a1,a2,b1,b2):
u=(a1*a1)-(b1*b1) + (a2*a2)-(b2*b2) #caculated according to the equation
u=u/2
return u

def calculatev(b1,b2,c1,c2):
v=(b1*b1)-(c1*c1) + (b2*b2)-(c2*c2) #caculated according to the equation
v=v/2
return v

def calculatex(u,v,a2,b2,c2,d):
x=u*(b2-c2) – v*(a2-b2) #x coordinate of the circle
x=x/d
return x

def calculatey(u,v,a1,b1,c1,d):
y=v*(a1-b1) – u*(b1-c1) #y coordinate of the circle
y=y/d
return y

def calculateradius(a1,a2,x,y):
radius=(a1-x)*(a1-x)+(a2-y)*(a2-y) #radius is easy calculation just pick any point and apply the distance formula
radius=radius**(1/2.0)
return radius

def info(x,y):
if(x==0 and y==0): # checking the quadrants of the point
return (“lies on the Origin”)
elif(x>0 and y>0):
return (“lies in 1st Quadrant”)
elif(x<0 and y>0):
return (“lies in 2nd Quadrant”)
elif(x<0 and y<0):
return (“lies in 3rd Quadrant”)
elif(x>0 and y<0):
return (“lies in 4th Quadrant”)

if __name__ == ‘__main__’ :
p1 = Point(50.0,70.0)
p2 = Point(-30.0,10.0) #initialize the points to some value
p3 = Point(40.0,-40.0)
print (“Point p1”, info(p1.x,p1.y))
print (“Point p2”,info(p2.x,p2.y)) #information about the points
print (“Point p3”,info(p3.x,p3.y))

d=calculated(p1.x,p1.y,p2.x,p2.y,p3.x,p3.y) #follow the steps in the algo
if(d==0):
print (“Points lie on the same line”)
sys.exit() #if lie on a line then exit
u=calculateu(p1.x,p1.y,p2.x,p2.y)
v=calculatev(p2.x,p2.y,p3.x,p3.y)
x=calculatex(u,v,p1.y,p2.y,p3.y,d)
y=calculatey(u,v,p1.x,p2.x,p3.x,d) #circle calucated
print (“Coordinates of the circle are x:”,x,” y:”,y) #center of the circle
radius=calculateradius(p1.x,p1.y,x,y) #calculate the radius
print (“Radius of the circle is: “,radius) #print the radius

 

Top Grade Homework
Order NOW For a 10% Discount!
Pages (550 words)
Approximate price: -

Why Work with Us

Top Quality and Well-Researched Papers

We always make sure that writers follow all your instructions precisely. You can choose your academic level: high school, college/university or professional, and we will assign a writer who has a respective degree.

Professional and Experienced Academic Writers

We have a team of professional writers with experience in academic and business writing. Many are native speakers and able to perform any task for which you need help.

Free Unlimited Revisions

If you think we missed something, send your order for a free revision. You have 10 days to submit the order for review after you have received the final document. You can do this yourself after logging into your personal account or by contacting our support.

Prompt Delivery and 100% Money-Back-Guarantee

All papers are always delivered on time. In case we need more time to master your paper, we may contact you regarding the deadline extension. In case you cannot provide us with more time, a 100% refund is guaranteed.

Original & Confidential

We use several writing tools checks to ensure that all documents you receive are free from plagiarism. Our editors carefully review all quotations in the text. We also promise maximum confidentiality in all of our services.

24/7 Customer Support

Our support agents are available 24 hours a day 7 days a week and committed to providing you with the best customer experience. Get in touch whenever you need any assistance.

Try it now!

Calculate the price of your order

Total price:
$0.00

How it works?

Follow these simple steps to get your paper done

Place your order

Fill in the order form and provide all details of your assignment.

Proceed with the payment

Choose the payment system that suits you most.

Receive the final file

Once your paper is ready, we will email it to you.

Our Services

No need to work on your paper at night. Sleep tight, we will cover your back. We offer all kinds of writing services.

Essays

Essay Writing Service

No matter what kind of academic paper you need and how urgent you need it, you are welcome to choose your academic level and the type of your paper at an affordable price. We take care of all your paper needs and give a 24/7 customer care support system.

Admissions

Admission Essays & Business Writing Help

An admission essay is an essay or other written statement by a candidate, often a potential student enrolling in a college, university, or graduate school. You can be rest assurred that through our service we will write the best admission essay for you.

Reviews

Editing Support

Our academic writers and editors make the necessary changes to your paper so that it is polished. We also format your document by correctly quoting the sources and creating reference lists in the formats APA, Harvard, MLA, Chicago / Turabian.

Reviews

Revision Support

If you think your paper could be improved, you can request a review. In this case, your paper will be checked by the writer or assigned to an editor. You can use this option as many times as you see fit. This is free because we want you to be completely satisfied with the service offered.

× Contact Live Agents