StevenXClontz’s avatarStevenXClontz’s Twitter Archive—№ 7,092

  1. …in reply to @ProfNoodlearms
    @ProfNoodlearms @sbagley Maybe better than my thought to create the polynomial then evaluate it. coeffs = vector([2, 3, -1]) poly = sum([a*x^n for n,a in enumerate(coeffs)]) show(poly) show(poly(x=3)) sagecell.sagemath.org/?q=tvomtt