Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 429769
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T19:48:30+00:00 2026-05-12T19:48:30+00:00

Solve this equation for x, (1 + x)^4=34.5 . I am interested in the

  • 0

Solve this equation for x, (1 + x)^4=34.5 . I am interested in the math libraries you’d use.

the equation is MUCH SIMPLER (1 + x)^4=34.5

thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T19:48:30+00:00Added an answer on May 12, 2026 at 7:48 pm

    approximate x*(x+a)^b=c

    You’ll need a more robust solution for more complex polynomials, but this may be good enough to finish your homework.

    This algorithm uses Newton’s Method and is written in Ruby. You can verify that the derivative and answer is correct using wolfram|alpha.

    def f(x,a,b,c)
     return x*(x+a)**b-c
    end
    
    def df(x,a,b,c)
     return (x+a)**b+b*x*(x+a)**(b-1)
    end
    
    def newton(a,b,c)
     xn=0   #initial seed for Newton's method
     
     while true
      xn2=xn-f(xn,a,b,c)/df(xn,a,b,c)  #Newton's method
      print "f(%.5f)=%.5f\n"%[xn,f(xn,a,b,c)]  
      break if (xn2*10000).to_i==(xn*10000).to_i #set desired precision here
      xn=xn2
     end
     print "root is %.5f"%[xn2]
    end
    
    newton(1,4,34.5)
    

    this produces:

    f(0.00000)=-34.50000
    f(34.50000)=54793902.65625
    f(27.44093)=17954483.09402
    f(21.79391)=5883122.74717
    f(17.27661)=1927672.51373
    f(13.66318)=631598.66717
    f(10.77301)=206926.07160
    f(8.46171)=67782.26596
    f(6.61400)=22194.34671
    f(5.13819)=7259.61867
    f(3.96214)=2367.67791
    f(3.03097)=765.73665
    f(2.30728)=241.54928
    f(1.77466)=70.68568
    f(1.43951)=16.48341
    f(1.30101)=1.97186
    f(1.27945)=0.04145
    f(1.27897)=0.00002
    root is 1.27897
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to solve this equation in Mathematica: d/dx v (x) = A .
I've been trying to solve this and I found an equation that gives the
I've got this equation that I want to solve with a java application. It
I am struggling to solve this equation. I concluded that the Master Theorem does
I'm trying to solve the equation f(x) = x-sin(x) -n*t -m0 In this equation,
How can I solve this equation x 3 + x - 1 = 0
i want to solve this equation... | 1 1 1 | |b0| |exp(t) |
I am trying to solve this problem http://www.spoj.pl/problems/PEBBMOV/ . I think I have the
I am trying to solve this SPOJ problem . The question asks to find
How can I solve this problem Cannot Create Forms. No MDI forms are currently

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.