[
  {
    "Question": "What is the sum of the first 10 terms of the arithmetic series where the first term is 5 and the common difference is 3?",
    "Answer": "B",
    "Explanation": "The sum of an arithmetic series can be calculated using the formula S_n = n/2 * (2a + (n-1)d), where n is the number of terms, a is the first term, and d is the common difference. Here, S_10 = 10/2 * (2*5 + (10-1)*3) = 5 * (10 + 27) = 5 * 37 = 185.",
    "PictureURL": "",
    "OptionA": "150",
    "OptionB": "185",
    "OptionC": "200",
    "OptionD": "210",
    "OptionE": "",
    "OptionF": "",
    "OptionG": "",
    "TestName": "Sequences and Series Practice Test",
    "Content Type": "Mathematics",
    "Title": "Arithmetic Series Calculation",
    "Item": 1,
    "Type": "multiple choice",
    "Path": "math/sequences_series/arithmetic"
  },
  {
    "Question": "Which of the following is the general term of the geometric series with first term 2 and common ratio 3?",
    "Answer": "A",
    "Explanation": "The general term of a geometric series can be expressed as a_n = a * r^(n-1), where a is the first term and r is the common ratio. Thus, a_n = 2 * 3^(n-1).",
    "PictureURL": "",
    "OptionA": "2 * 3^(n-1)",
    "OptionB": "3 * 2^(n-1)",
    "OptionC": "2 * n * 3",
    "OptionD": "3 * n * 2",
    "OptionE": "",
    "OptionF": "",
    "OptionG": "",
    "TestName": "Sequences and Series Practice Test",
    "Content Type": "Mathematics",
    "Title": "Geometric Series General Term",
    "Item": 2,
    "Type": "multiple choice",
    "Path": "math/sequences_series/geometric"
  },
  {
    "Question": "What is the value of the sum represented by sigma notation Σ (from n=1 to 5) of (2n + 1)?",
    "Answer": "C",
    "Explanation": "To evaluate the sum, calculate each term: (2*1 + 1) + (2*2 + 1) + (2*3 + 1) + (2*4 + 1) + (2*5 + 1) = 3 + 5 + 7 + 9 + 11 = 35.",
    "PictureURL": "",
    "OptionA": "25",
    "OptionB": "30",
    "OptionC": "35",
    "OptionD": "40",
    "OptionE": "",
    "OptionF": "",
    "OptionG": "",
    "TestName": "Sequences and Series Practice Test",
    "Content Type": "Mathematics",
    "Title": "Sigma Notation Evaluation",
    "Item": 3,
    "Type": "multiple choice",
    "Path": "math/sequences_series/sigma"
  },
  {
    "Question": "What is the 7th term of the arithmetic sequence where the first term is 4 and the common difference is 2?",
    "Answer": "B",
    "Explanation": "The nth term of an arithmetic sequence can be calculated using the formula a_n = a + (n-1)d. Here, a_7 = 4 + (7-1)*2 = 4 + 12 = 16.",
    "PictureURL": "",
    "OptionA": "14",
    "OptionB": "16",
    "OptionC": "18",
    "OptionD": "20",
    "OptionE": "",
    "OptionF": "",
    "OptionG": "",
    "TestName": "Sequences and Series Practice Test",
    "Content Type": "Mathematics",
    "Title": "Finding the nth Term of an Arithmetic Sequence",
    "Item": 4,
    "Type": "multiple choice",
    "Path": "math/sequences_series/arithmetic"
  },
  {
    "Question": "If the first term of a geometric series is 1 and the common ratio is 2, what is the sum of the first 4 terms?",
    "Answer": "A",
    "Explanation": "The sum of the first n terms of a geometric series can be calculated using the formula S_n = a * (1 - r^n) / (1 - r). Here, S_4 = 1 * (1 - 2^4) / (1 - 2) = 1 * (1 - 16) / (-1) = 15.",
    "PictureURL": "",
    "OptionA": "15",
    "OptionB": "14",
    "OptionC": "16",
    "OptionD": "13",
    "OptionE": "",
    "OptionF": "",
    "OptionG": "",
    "TestName": "Sequences and Series Practice Test",
    "Content Type": "Mathematics",
    "Title": "Sum of Geometric Series",
    "Item": 5,
    "Type": "multiple choice",
    "Path": "math/sequences_series/geometric"
  },
  {
    "Question": "What is the binomial expansion of (x + y)^3?",
    "Answer": "C",
    "Explanation": "The binomial theorem states that (a + b)^n = Σ (from k=0 to n) of (n choose k) * a^(n-k) * b^k. For (x + y)^3, it expands to x^3 + 3x^2y + 3xy^2 + y^3.",
    "PictureURL": "",
    "OptionA": "x^3 + y^3",
    "OptionB": "x^3 + 3xy^2",
    "OptionC": "x^3 + 3x^2y + 3xy^2 + y^3",
    "OptionD": "x^3 + 3x^2y + y^3",
    "OptionE": "",
    "OptionF": "",
    "OptionG": "",
    "TestName": "Sequences and Series Practice Test",
    "Content Type": "Mathematics",
    "Title": "Binomial Expansion",
    "Item": 6,
    "Type": "multiple choice",
    "Path": "math/sequences_series/binomial"
  },
  {
    "Question": "What is the common ratio of the geometric series 5, 15, 45, 135?",
    "Answer": "B",
    "Explanation": "The common ratio r can be found by dividing any term by the previous term. Here, r = 15/5 = 3.",
    "PictureURL": "",
    "OptionA": "2",
    "OptionB": "3",
    "OptionC": "4",
    "OptionD": "5",
    "OptionE": "",
    "OptionF": "",
    "OptionG": "",
    "TestName": "Sequences and Series Practice Test",
    "Content Type": "Mathematics",
    "Title": "Finding Common Ratio",
    "Item": 7,
    "Type": "multiple choice",
    "Path": "math/sequences_series/geometric"
  },
  {
    "Question": "What is the sum of the first 6 terms of the arithmetic series 10, 14, 18, ...?",
    "Answer": "A",
    "Explanation": "Using the formula for the sum of an arithmetic series, S_n = n/2 * (2a + (n-1)d), we find S_6 = 6/2 * (2*10 + (6-1)*4) = 3 * (20 + 20) = 3 * 40 = 120.",
    "PictureURL": "",
    "OptionA": "120",
    "OptionB": "100",
    "OptionC": "140",
    "OptionD": "160",
    "OptionE": "",
    "OptionF": "",
    "OptionG": "",
    "TestName": "Sequences and Series Practice Test",
    "Content Type": "Mathematics",
    "Title": "Sum of Arithmetic Series",
    "Item": 8,
    "Type": "multiple choice",
    "Path": "math/sequences_series/arithmetic"
  },
  {
    "Question": "What is the 5th term of the geometric sequence where the first term is 4 and the common ratio is 0.5?",
    "Answer": "C",
    "Explanation": "The nth term of a geometric sequence can be calculated using the formula a_n = a * r^(n-1). Here, a_5 = 4 * (0.5)^(5-1) = 4 * (0.5)^4 = 4 * 0.0625 = 0.25.",
    "PictureURL": "",
    "OptionA": "0.5",
    "OptionB": "1",
    "OptionC": "0.25",
    "OptionD": "0.125",
    "OptionE": "",
    "OptionF": "",
    "OptionG": "",
    "TestName": "Sequences and Series Practice Test",
    "Content Type": "Mathematics",
    "Title": "Finding nth Term of Geometric Sequence",
    "Item": 9,
    "Type": "multiple choice",
    "Path": "math/sequences_series/geometric"
  },
  {
    "Question": "Using the binomial theorem, what is the coefficient of x^2 in the expansion of (2x + 3)^4?",
    "Answer": "B",
    "Explanation": "The coefficient of x^2 in the expansion of (a + b)^n is given by (n choose k) * a^(n-k) * b^k. Here, k=2, n=4, a=2x, b=3. Thus, the coefficient is (4 choose 2) * (2)^2 * (3)^2 = 6 * 4 * 9 = 216.",
    "PictureURL": "",
    "OptionA": "108",
    "OptionB": "216",
    "OptionC": "324",
    "OptionD": "432",
    "OptionE": "",
    "OptionF": "",
    "OptionG": "",
    "TestName": "Sequences and Series Practice Test",
    "Content Type": "Mathematics",
    "Title": "Coefficient in Binomial Expansion",
    "Item": 10,
    "Type": "multiple choice",
    "Path": "math/sequences_series/binomial"
  },
  {
    "Question": "What is the sum of the infinite geometric series with first term 4 and common ratio 1/2?",
    "Answer": "A",
    "Explanation": "The sum of an infinite geometric series can be calculated using the formula S = a / (1 - r), where |r| < 1. Here, S = 4 / (1 - 1/2) = 4 / (1/2) = 8.",
    "PictureURL": "",
    "OptionA": "8",
    "OptionB": "6",
    "OptionC": "10",
    "OptionD": "12",
    "OptionE": "",
    "OptionF": "",
    "OptionG": "",
    "TestName": "Sequences and Series Practice Test",
    "Content Type": "Mathematics",
    "Title": "Sum of Infinite Geometric Series",
    "Item": 11,
    "Type": "multiple choice",
    "Path": "math/sequences_series/infinite_geometric"
  },
  {
    "Question": "What is the 10th term of the arithmetic sequence defined by the formula a_n = 3 + (n-1) * 5?",
    "Answer": "C",
    "Explanation": "To find the 10th term, substitute n=10 into the formula: a_10 = 3 + (10-1) * 5 = 3 + 45 = 48.",
    "PictureURL": "",
    "OptionA": "45",
    "OptionB": "46",
    "OptionC": "48",
    "OptionD": "49",
    "OptionE": "",
    "OptionF": "",
    "OptionG": "",
    "TestName": "Sequences and Series Practice Test",
    "Content Type": "Mathematics",
    "Title": "Finding nth Term of Arithmetic Sequence",
    "Item": 12,
    "Type": "multiple choice",
    "Path": "math/sequences_series/arithmetic"
  },
  {
    "Question": "What is the sum of the first 8 terms of the arithmetic series 2, 5, 8, ...?",
    "Answer": "B",
    "Explanation": "Using the sum formula S_n = n/2 * (2a + (n-1)d), we find S_8 = 8/2 * (2*2 + (8-1)*3) = 4 * (4 + 21) = 4 * 25 = 100.",
    "PictureURL": "",
    "OptionA": "80",
    "OptionB": "100",
    "OptionC": "120",
    "OptionD": "140",
    "OptionE": "",
    "OptionF": "",
    "OptionG": "",
    "TestName": "Sequences and Series Practice Test",
    "Content Type": "Mathematics",
    "Title": "Sum of Arithmetic Series",
    "Item": 13,
    "Type": "multiple choice",
    "Path": "math/sequences_series/arithmetic"
  },
  {
    "Question": "What is the common ratio of the geometric series 1, 1/2, 1/4, 1/8?",
    "Answer": "A",
    "Explanation": "The common ratio r can be found by dividing any term by the previous term. Here, r = (1/2) / 1 = 1/2.",
    "PictureURL": "",
    "OptionA": "1/2",
    "OptionB": "1/4",
    "OptionC": "1/3",
    "OptionD": "1",
    "OptionE": "",
    "OptionF": "",
    "OptionG": "",
    "TestName": "Sequences and Series Practice Test",
    "Content Type": "Mathematics",
    "Title": "Finding Common Ratio",
    "Item": 14,
    "Type": "multiple choice",
    "Path": "math/sequences_series/geometric"
  },
  {
    "Question": "Using the binomial theorem, what is the expansion of (x + 2)^2?",
    "Answer": "D",
    "Explanation": "Using the binomial theorem, (a + b)^n = Σ (from k=0 to n) of (n choose k) * a^(n-k) * b^k. For (x + 2)^2, it expands to x^2 + 4x + 4.",
    "PictureURL": "",
    "OptionA": "x^2 + 2",
    "OptionB": "x^2 + 2x + 2",
    "OptionC": "x^2 + 2x + 4",
    "OptionD": "x^2 + 4x + 4",
    "OptionE": "",
    "OptionF": "",
    "OptionG": "",
    "TestName": "Sequences and Series Practice Test",
    "Content Type": "Mathematics",
    "Title": "Binomial Expansion",
    "Item": 15,
    "Type": "multiple choice",
    "Path": "math/sequences_series/binomial"
  }
]