You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print(f"Left-hand limit as x approaches {x_value}: {left_limit}")
25
+
print(f"Right-hand limit as x approaches {x_value}: {right_limit}")
26
+
ifabs(left_limit-right_limit) <0.1:
27
+
print(f"The limit as x approaches {x_value} is equal to: {int(right_limit)}")
28
+
else:
29
+
print(f"The limit does not exist as the left-hand limit ({left_limit}) and right-hand limit ({right_limit}) are not equal.Hence limit does not exist.")
0 commit comments