Python Forum
Solving an equation by brute force within a range
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Solving an equation by brute force within a range
#1
Hello! I try to solve the equation sqrt(x**2 + y**2) by brute force within the range [0, 10]. Please help me make this code work

def eq(x, y):
    i = sqrt(x**2 + y**2)
    return sqrt(x**2 + y**2)
eps = 0.001
step = eps / 2
i = (0, 10, step)
for x in range (-10, 10, step):
  for y in range (-10, 10, step):
    while eq(x, y) == i:
      print(f"x = {x}, y = {y}")
Reply


Messages In This Thread
Solving an equation by brute force within a range - by alexfrol86 - Mar-17-2022, 06:54 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
Question written RK solving same equation with different graphs acbshinn 1 425 Feb-09-2024, 12:33 PM
Last Post: Gribouillis
  Need an alternative to brute force optimization loop jmbonni 5 1,223 Dec-07-2023, 12:28 PM
Last Post: RockBlok
  force a program to exit ? Armandito 3 2,585 May-12-2022, 04:03 PM
Last Post: Gribouillis
  Solving equation equal to zero: How to resolve the syntax error? alexfrol86 3 2,015 Feb-21-2022, 08:58 AM
Last Post: deanhystad
  matplotlib x axis range goes over the set range Pedroski55 5 3,269 Nov-21-2021, 08:40 AM
Last Post: paul18fr
  Solving for zeros of an equation! fmitchell17 0 1,854 Apr-05-2021, 07:49 PM
Last Post: fmitchell17
  How to use scipy.optimization.brute for multivariable function Shiladitya 9 6,341 Oct-28-2020, 10:40 PM
Last Post: scidam
  best way to force an exception Skaperen 2 2,080 Oct-21-2020, 05:59 AM
Last Post: Gribouillis
  I need advise with developing a brute forcing script fatjuicypython 11 5,158 Aug-21-2020, 09:20 PM
Last Post: Marbelous
  How to Solving non-linear equation using scipy.optimize fsolve with variable list djhak 3 4,594 Jun-10-2020, 04:12 PM
Last Post: Gribouillis

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020