Study Material
Computer Science
Write following expressions in Python:
x
=
−
b
+
b
2
−
4
a
c
2
a
x = \dfrac{-b + \sqrt{b^2 - 4ac}}{2a}
x
=
2
a
−
b
+
b
2
−
4
a
c
Python Data Handling
59 Likes
Answer
x
=
(
-
b
+
math
.
sqrt
(
b
*
b
-
4
*
a
*
c
)
)
/
(
2
*
a
)
Answered By
32 Likes
Related Questions
Write following expressions in Python:
a
n
×
a
m
=
a
n
+
m
a^n \times a^m = a^{n+m}
a
n
×
a
m
=
a
n
+
m
View Answer
Bookmark Now
Write following expressions in Python:
(
x
2
−
x
1
)
2
+
(
y
2
−
y
1
)
2
\sqrt{(x2 - x1)^2 + (y2 - y1)^2}
(
x
2
−
x
1
)
2
+
(
y
2
−
y
1
)
2
View Answer
Bookmark Now
Write following expressions in Python:
(
x
−
h
)
2
+
(
y
−
k
)
2
=
r
2
(x - h)^2 + (y - k)^2 = r^2
(
x
−
h
)
2
+
(
y
−
k
)
2
=
r
2
View Answer
Bookmark Now
Write following expressions in Python:
(
a
n
)
m
=
a
n
m
(a^n)^m = a^{nm}
(
a
n
)
m
=
a
n
m
View Answer
Bookmark Now