Recent content by Hi Im Paul

  1. Hi Im Paul

    Python What's wrong with my bisection method code?

    Hello, I am assigned to write a code using bisection method (aka binary search method) The equation is 10sin(x) - x^3 - N where N = 1,2,3,4,5,6,7 My code is from math import sin def neg(a, b): return a*b> 0 def bisectx(funcx, lowx, highx,n): assert not neg(funcx(lowx,n), funcx(highx,n))...
  2. Hi Im Paul

    Graphing Data in Excel: Error Bar Confusion

    I'm currently writing a paper over an experiment I did for class and I have a very stupid question over I need clarification on before I continue. I am using excel to graph out data, and I have determined that the error in my Length is .001 m. However, I am graphing the inverse of length to...
Back
Top