Practice Questions for CSIR NET Group Theory : Conjugate Classes and Class Equation II

Practice Questions for NET JRF Group Theory Assignment: Conjugate Classes and Class Equation
Practice Questions for NET JRF Group Theory Assignment: Conjugate Classes and Class Equation

Practice Questions for NET JRF Group Theory
Assignment: Conjugate Classes and Class Equation

13. A finitely generated subgroup \(G\) of the additive group \(\mathbb{Q}\) of rational numbers satisfies





14. In the permutation group \(S_{6}\) then numbers of elements conjugate to \((123)(456)\) is





15. Let \(G=\{e,x,x^2,y,xy,x^2y,x^3y\}\) with \(o(x)=4,o(y)=2\) and \(xy=yx^3\) Then the number of elements in center of the group \(G\) is





16. Which of the following groups contains a





17. The number of elements in the conjugacy class of the 3-cycle (234) in the symmetric group \(S_{6}\) is





18. Which one of the following groups is simple?





19. Let \(G\) be the group of all symmetries of the square. Then the number of conjugate classes in \(G\) is





20. Let \(S_{10}\) denote the group of permutations on ten symbols \(\{1,2, \ldots \ldots, 10\}\). The number of elements of \(S_{10}\) commuting with the element \(\sigma=(13579)\) is





21. Let \(\sigma\) and \(\tau\) be the permutations defined by

\(\sigma=\left(\begin{array}{lllllllll}1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 \\ 1 & 3 & 5 & 7 & 9 & 6 & 4 & 8 & 2\end{array}\right)\) and

\(\tau=\left(\begin{array}{lllllllll}1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 \\ 7 & 8 & 3 & 4 & 9 & 6 & 5 & 2 & 1\end{array}\right)\)

Then





22. Let \(G\) be a group of order 30. Let \(H\) and \(K\) be normal subgroups of orders 2 and 5 respectively. Then the order of the group \(G / (H K)\) is





23. The number of elements of \(S_{5}\) that commutes with \((123)\) are





24. The possible class equation of group of order 10





25. Choose the correct:





const feedbackList = document.querySelectorAll('.feedback'); const explanationList = document.querySelectorAll('.explanation'); function checkAnswer(questionIndex) { const options = document.querySelectorAll(`.question:nth-child(${questionIndex + 1}) .options input:checked`); const feedback = feedbackList[questionIndex]; const explanation = explanationList[questionIndex]; if (options.length === 0) { feedback.innerHTML = `Question not attempted. The correct answer is ${formatCorrectAnswer(correctAnswers[questionIndex])}.`; feedback.className = 'not-attempted'; } else if (compareArrays(Array.from(options).map(option => option.value), correctAnswers[questionIndex])) { feedback.innerHTML = 'Correct answer!'; feedback.className = 'correct'; } else { feedback.innerHTML = `Incorrect answer. The correct answer is ${formatCorrectAnswer(correctAnswers[questionIndex])}.`; feedback.className = 'incorrect'; } explanation.style.display = 'block'; } document.querySelectorAll('.submit-button').forEach((submitButton, index) => { submitButton.addEventListener('click', () => { checkAnswer(index); }); }); function compareArrays(arr1, arr2) { return arr1.length === arr2.length && arr1.every(value => arr2.includes(value)); } function formatCorrectAnswer(answer) { if (Array.isArray(answer)) { return answer.join(', '); } return answer; }

Post a Comment

0 Comments