Quote (TheStealthTarget @ 16 Oct 2015 15:44)
Perhaps
https://projecteuler.net/ has what you are looking for. Many of them require logic from a computer to solve. but it is a good learning curve for getting the computer to help you solve problems of this nature.
This site looks very, very interesting. Thanks for posting.
At first I thought I would start with problems where the use of a calculator/computer aren't needed, but the description on the site fits well with what I'm looking for.
I just hope I won't get stuck because I lack education in mathematical terms and methods.
I bookmarked it and will look into it more at a later time.
@carteblanche
I'll google number theory and read up on what that entails. I did some searching and found a nice website with problems for high school math competetion in my country (abel konkurransen). I actually entered all 3 years in high school, and won all of them for my school. Kind of funny because the 1st year I only got like 9/20 questions right - I found this exact test on the website I remembered, and that is where the 25 knights problem was from. Some teachers got mad at me for not participating in the 2nd rounds though, but then I'd have to drop gym classes etc, kind of regret it now.
I'll try to do them again, and see how I do, probably a lot of hard questions to keep my occupied for a while.
@joeinfhills
This problem is actually rather tricky, as it's easy to mess up and forget to account for certain scenarios.
I've asked this one to someone studying math in college, but they didn't get it right either.
I did this again now, and posting answer for you here:
(P) = p(2A1) + p(3A1,2 - variation 1) + p((3A1,2 - variation 2)
P = probability of at least 2 knights sitting next to eachother
A refers to adjacent. for example 2A1: knight nr 2 is next to nr 1. 3A1,2: knight nr 3 is next to either nr 1 or nr 2.
variation 1: this is when the 2nd knight is not seated next to the first, but with 1 seat in between (only 3 seats where nr 3 can sit to be adjacent)
variation 2: this is when the 2nd knight is not seated next to the first, but with at least 2 seats in between (4 seats where nr 3 can sit to be adjacent)
(P) = 2/24 + (2/24)*(3/23) + (20/24)*(4/23)
(P) = 132/(24*23)
(P) = 11/46