What is print 4*.__ -1 result=8 so, what's the number come in the space you can write only one number | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 4

What is print 4*.__ -1 result=8 so, what's the number come in the space you can write only one number

7th May 2022, 3:15 AM
POONAM Yadav
6 Answers
+ 1
Please write your question in a separate lines to can understand it and help you
7th May 2022, 3:19 AM
Muhammad Galhoum
Muhammad Galhoum - avatar
+ 1
#Equation solving using python: '''suppose the unknown value is "x". So, 4*x - 1 = 8 Or, 4*x - 1 - 8 = 0 Or, 4*x - 9 = 0''' from sympy.solvers import solve from sympy import Symbol x = Symbol('x') print(solve(4*x - 9, x)) #Output: [9/4]
7th May 2022, 5:50 AM
Fꫀⲅძ᥆͟ᥙ᥉᯽
Fꫀⲅძ᥆͟ᥙ᥉᯽ - avatar
0
4 * x -1 = 8 4x -1 = 8 4x = 8 +1 4x = 9 x = 9/4= 2.25
7th May 2022, 3:31 AM
Muhammad Galhoum
Muhammad Galhoum - avatar
0
MD. Ferdous Ibne Abu Bakar wow. This is great. Thank you. I tried to solve the equations and this is what I got: https://code.sololearn.com/c8AFbgHsTqZX/?ref=app Although, both methods couldn't determine repeated root. So there will be no difference between x-1=0 and (x-1)*(x-1)=0 in code results. Any ideas?
7th May 2022, 7:21 AM
Ashkan Shakibi
Ashkan Shakibi - avatar
7th May 2022, 7:53 AM
Fꫀⲅძ᥆͟ᥙ᥉᯽
Fꫀⲅძ᥆͟ᥙ᥉᯽ - avatar
0
Ashkan Sh 🇺🇦🇺🇦🇺🇦 from sympy import * x = Symbol('x') eq = simplify((x+1)*(x+1)) x1 = solve(eq, x) y = simplify((x+x1[0])) print(f'{y} = 0')
7th May 2022, 9:06 AM
Fꫀⲅძ᥆͟ᥙ᥉᯽
Fꫀⲅძ᥆͟ᥙ᥉᯽ - avatar