Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Challenges

Expand a polynomial

+2
−0

Challenge

Given the roots of a polynomial (that is, the $x$ values where the polynomial evaluates to zero), as an array of real numbers, return the polynomial's coefficients.

That is, given real roots $r_1, r_2, \cdots , r_n$, find the coefficients of the expansion of $(x-r_1)(x-r_2)\cdots(x-r_n)$, or any non-zero scalar multiple of it.

You may use either lowest power first or highest power first order for the resulting list of coefficients.

Tests

// Note that any non-zero scalar multiple of these results is valid
[]        -> [1]
[1]       -> [-1, 1]         // (x - 1) = -1 + 1x
[1, 2]    -> [2, -3, 1]      // (x - 1)(x - 2) = 2 - 3x + 1x^2
[1, 1]    -> [1, -2, 1]      // (x - 1)^2 = 1 -2x + 1x^2
[1, 2, 3] -> [-6, 11, -6, 1] // (x - 1)(x - 2)(x - 3) = -6 + 11x - 6x^2 + x^3

This is code golf, so the shortest answer in bytes wins!

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

0 comment threads

4 answers

+2
−0

Japt -Q, 15 12 bytes

à üÊËx_×*JpE

-3 bytes thanks to @Shaggy

Uses Vieta's.

Try it

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

12 bytes (2 comments)
+2
−0

Vyxal, 2 bytes

∆ṙ

Try it Online!

That cheap builtin.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

+0
−0

JavaScript (Node.js), 58 bytes

([x,...r],y)=>x?[0,...y=f(r)].map((v,i)=>v-x*(y[i]|0)):[1]

Try it online!

History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

+0
−0

Haskell, 45 bytes

foldl(\a b->zipWith((-).(*b))(0:a)$a++[0])[1]

Try it online!

Uses the "highest power first" convention. Sometimes multiplies the polynomial by $(-1)$.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

0 comment threads

Sign up to answer this question »