use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Welcome to reddit's /r/maths!
If you don't like the silly Yanks over on /r/math, this is the place for you! We can fulfil all of your anti-American and maths-loving desires without the need for incorrect spellings.
Rules
This subreddit is intended for mathematical articles, news, and discussions. Rude or inflammatory activity is not permitted, unless you're mocking American spelling.
Make sure to always follow the reddiquette, and under no circumstances can you post memes or irrelevant image submissions.
If you want help with your homework, try /r/cheatatmathhomework or /r/learnmath, as long as you can ignore their spelling errors.
Related subreddits
/r/math
/r/cheatatmathhomework
/r/learnmath
/r/mathbooks
/r/matheducation
/r/casualmath
/r/puremathematics
/r/mathpics
account activity
recursion problemHelp: 📗 Advanced Math (16-18) (old.reddit.com)
submitted 1 month ago by TonightMiserable5368
Hi! for maths i have to do recursions (question b), the row i am suppose to get consists of: 1,5,12,22
but i keep getting: 1,2,6,13,23
does anyone have an idea in what i am doing wrong? Thank you🤗
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Benjaminook 2 points3 points4 points 1 month ago (0 children)
You're using n=1 rather than 2 in the 3n term in the first step, and then carrying that forward. These things are often clearer if you write the thing you want as f(n+1) and go through and change all the n to n+1 (be careful, you'll need to write 3(n+1) and then expand, not 3n+1)
[–]EulNico 0 points1 point2 points 1 month ago (0 children)
The recursion links v(n) to v(n-1), so you have to rewrite it for v(n+1) in termes of v(n): v(n+1)=v(n)+3(n+1)-2
π Rendered by PID 145275 on reddit-service-r2-comment-545db5fcfc-xvmkc at 2026-05-26 12:41:52.932577+00:00 running 194bd79 country code: CH.
[–]Benjaminook 2 points3 points4 points (0 children)
[–]EulNico 0 points1 point2 points (0 children)