I'm not in school. I last took algebra over 40 years ago and I'm a bit rusty.
I am working on a knitting project. It starts with 8 stitches and adds 4 stitches for each row. I want to find out how many stitches one skein of yarn will use so that I can work out how best to use the yarn I have remaining.
I worked out how to do that. The formula, which seems to work is
t = rs + ar(r+1)/2
where
t = total number of stitches
r = number of rows completed
a = number of stitches added per row
s = number of stitches at the start of the project
I will compute this once I finish with the first skein of yarn, which will get me halfway to what I need to know. The real use of it is to come up with the number of increasingly lengthy rows that I can make with subsequent skeins of yarn. What I figure is that I need to
--solve the above formula for r
--replace s with s + a(the number of previous rows completed) [the number of stitches in the last row completed, which is my new starting point]
--use the value of t from the previous computation, since the number of stitches worked by a skein will be constant
I keep trying to solve for r, but I end up going in circles, ending up where I started, solving for t.
I am working on a knitting project. It starts with 8 stitches and adds 4 stitches for each row. I want to find out how many stitches one skein of yarn will use so that I can work out how best to use the yarn I have remaining.
I worked out how to do that. The formula, which seems to work is
t = rs + ar(r+1)/2
where
t = total number of stitches
r = number of rows completed
a = number of stitches added per row
s = number of stitches at the start of the project
I will compute this once I finish with the first skein of yarn, which will get me halfway to what I need to know. The real use of it is to come up with the number of increasingly lengthy rows that I can make with subsequent skeins of yarn. What I figure is that I need to
--solve the above formula for r
--replace s with s + a(the number of previous rows completed) [the number of stitches in the last row completed, which is my new starting point]
--use the value of t from the previous computation, since the number of stitches worked by a skein will be constant
I keep trying to solve for r, but I end up going in circles, ending up where I started, solving for t.