summaryrefslogtreecommitdiff
path: root/progs/a516.py
blob: c3be5679111273008b429da6fe60107efa4f73d1 (plain)
1
2
3
def parabola_vertex(a, b, c): 
  vertex=(((-b / (2 * a)),(((4 * a * c) - (b * b)) / (4 * a))))
  return vertex