_x000D_
Hi, I think all of the above might work. In case what you need is simple, I used:_x000D_
_x000D_
<body>_x000D_
<div class="radio-buttons-choice" id="container-3-radio-buttons-choice">_x000D_
<input type="radio" name="one" id="one-variable-equations" onclick="checkRadio(name)"><label>Only one</label><br>_x000D_
<input type="radio" name="multiple" id="multiple-variable-equations" onclick="checkRadio(name)"><label>I have multiple</label>_x000D_
</div>_x000D_
_x000D_
<script>_x000D_
function checkRadio(name) {_x000D_
if(name == "one"){_x000D_
console.log("Choice: ", name);_x000D_
document.getElementById("one-variable-equations").checked = true;_x000D_
document.getElementById("multiple-variable-equations").checked = false;_x000D_
_x000D_
} else if (name == "multiple"){_x000D_
console.log("Choice: ", name);_x000D_
document.getElementById("multiple-variable-equations").checked = true;_x000D_
document.getElementById("one-variable-equations").checked = false;_x000D_
}_x000D_
}_x000D_
</script>_x000D_
</body>
_x000D_