Notation/Setup. Let $p$ be a prime greater than 2 and $d$ be a square free integer such that $\gcd(d,p) = 1$.
Question. Suppose we pick $d\equiv 3\mod 4$, in which case $\mathbf{Q}(\sqrt{d})$ is ramified at 2 over $\mathbf{Q}$. Moreover, we know that the norm of $\mathfrak{q}|2$ in $\mathbf{Q}(\sqrt{d})$ is equal to 2. From this, how could one conclude that $\mathbf{Q}(\sqrt{d})$ has no cyclic extension of degree $p$ in which $\mathfrak{q}|2$ ramifies?
Notes. I believe that this should follow from some global class field theory, however, I cannot immediate see that. Also the question does provide some help, however, the cyclic extension of degree $p$ need not be of the form $\mathbf{Q}(\sqrt{d},\sqrt[p]{a})$ for some $a\in \mathbf{Q}(\sqrt{d})$.
This question comes from a tersely written paper I am reading, and I would like to get some more insight into why this is true.
Any references/answers/suggestions are welcome.
Edit. Here is some empirical evidence (Magma code) supporting this claim for $p = 3$:
Q<k> := PolynomialRing(Integers());
A:= k^2 + k + 7;
P<t> := PolynomialRing(Rationals());
F := [t^2 + 1,t^2 - 2,t^2 +2,t^2 - 6, t^2 + 6, t^2 - 10, t^2 + 10, t^2 - 14, t^2 + 14]; //Ramified quadratic extensions at 2,3
for i in [1..#F] do
L := NumberField(F[i]);
D1 := Factorization(2*Integers(L))[1,1]; //Prime above 2
K<x> := PolynomialRing(L);
for i in [1..10] do
E := Evaluate(A,i);
V := x^3 - E*x + E;
K := NumberField(V); //An infinite family over Q of number fields with Z/3 Galois group
if #GaloisGroup(V) eq 3 then
IsRamified(D1,Integers(K));
end if;
end for;
"********************************************";
end for;
This is an immediate consequence of local class field theory. Namely, if a number field field $E$ has a cyclic extension of degree $p$ ramified at $\mathfrak{q}$, then certainly the completion $K = E_{\mathfrak{q}}$ admits a cyclic extension of degree $p$ ramified at $\mathfrak{q}$. Since $p$ is odd and $\mathfrak{q}$ has residue characteristic two, this extension is tamely ramified. Yet, by local class field theory, the tamely ramified cyclic extensions of a local field $K$ all have degree dividing $|k^{\times}|$, where $k$ is the residue field. In this case, $k = \mathbf{F}_2$, and so there are no tamely ramified (and not unramified) extensions.