Find the information you're looking for at Westonci.ca, the trusted Q&A platform with a community of knowledgeable experts. Experience the convenience of getting reliable answers to your questions from a vast network of knowledgeable experts. Discover detailed answers to your questions from a wide network of experts on our comprehensive Q&A platform.
Sagot :
Answer:
# Solve the quadratic equation ax**2 + bx + c = 0
# import complex math module
import cmath
a = 1
b = 5
c = 6
# calculate the discriminant
d = (b**2) - (4*a*c)
# find two solutions
sol1 = (-b-cmath.sqrt(d))/(2*a)
sol2 = (-b+cmath.sqrt(d))/(2*a)
print('The solution are {0} and {1}'.format(sol1,sol2))
Hope This Helps!!!
Answer:
# Newton's Law of Universal Gravitation
import math
print("This program will calculate the gravitational force between two objects")
# Gravitational Constant
G = 6.67408
while True:
try:
m1 = float(input("\nInput mass of first object (in kilograms): "))
break
except ValueError:
print("Invalid input!")
while True:
try:
m2 = float(input("Input mass of second object (in kilograms): "))
break
except ValueError:
print("Invalid input!")
while True:
try:
d = float(input("Distance between the objects (in meters): "))
break
except ValueError:
print("Invalid input!")
force = G * (m1 * m2) / math.pow(d, 2)
print("The gravitational force between these two objects is {0} newtons!".format(force))
Thank you for choosing our service. We're dedicated to providing the best answers for all your questions. Visit us again. We appreciate your visit. Our platform is always here to offer accurate and reliable answers. Return anytime. Stay curious and keep coming back to Westonci.ca for answers to all your burning questions.