As Seen On
Recognized By
Understanding the Role of Juries in Arizona Criminal Trials: 7 Key Points
Welcome to the Tamou Law Group PLLC blog! Today, we delve into the integral role of juries in Arizona criminal trials. Serving on a jury is a cornerstone of civic responsibility and the justice system. In Arizona, the jury system is designed to ensure fair and impartial trials, embodying the democratic principle that peers should determine the fate of the accused. This post outlines seven key aspects of jury duties and processes in Arizona criminal trials.1
Eligibility and Selection of Jurors
Under Arizona law, jurors are drawn from a fair cross-section of the community. Eligible jurors must be U.S. citizens, at least 18 years old, residents of the jurisdiction, able to understand English, and have no disqualifying mental or physical conditions. The selection process, or voir dire, involves attorneys for both the defense and prosecution asking potential jurors questions to determine any biases or inability to judge the case impartially.2
Role of the Jury
The primary role of the jury in a criminal trial is to weigh the evidence presented and determine whether the defendant is guilty beyond a reasonable doubt. This standard reflects the high burden of proof placed on the prosecution, respecting the presumption of innocence afforded to all defendants under the U.S. Constitution and Arizona law.3
Jury Size and Unanimity
In Arizona, the size of juries can vary depending on the trial. For most felony trials, 12 jurors are required, although in some lesser felony cases, only eight jurors may be necessary. Arizona law mandates that the jury’s verdict must be unanimous, meaning all jurors must agree on the decision of guilt or innocence.4
Jury Instructions
Before deliberation, the judge gives the jury instructions that outline the legal standards needed to determine whether the accused committed the crime. These instructions are crucial as they guide the jury’s understanding and application of the law to the facts presented during the trial.5
Stages of a Criminal Trial
An Arizona criminal trial typically proceeds through several stages: selection of the jury, opening statements, presentation of evidence, closing arguments, jury instructions, deliberation, and finally, the verdict. Each stage is designed to provide the jury with the necessary information and legal context to make a fair decision.6
Jury Deliberation
Deliberation is the process by which jurors discuss the evidence in private to reach a verdict. Arizona law requires that this process be conducted solely among the jurors to ensure an unbiased decision free from external influences. Jurors must consider only the evidence presented in court and are prohibited from conducting personal investigations.7
Important Arizona Statutes
Several statutes are key to understanding jury procedures in Arizona criminal trials:
- ARS § 21-202: This statute outlines the qualifications for jury service.
- ARS § 21-211: This covers the disqualification of jurors.
- ARS § 21-102: Pertains to the selection and summoning of jurors.
- ARS § 13-114: Establishes the burden of proof and presumption of innocence in criminal trials.
Jury service is a significant duty and right for citizens, providing a direct means of participating in the legal process and ensuring that justice is served fairly and impartially.
Conclusion
At Tamou Law Group PLLC, we recognize the critical role that juries play in the Arizona criminal justice system. Understanding these key points helps demystify the process and highlights the importance of jury duty. If you or someone you know is facing criminal charges and needs experienced legal representation, or if you have further questions about the jury process in Arizona, do not hesitate to contact Tamou Law at 623-321-4699. Our experienced attorneys are here to provide guidance and defend your rights throughout the legal process.
Awards & Recognition
Our recognition for Phoenix DUI defense is independently verified, click any award to confirm it:
- National Trial Lawyers Top 100
- National Trial Lawyers Top 40 Under 40
- Elite Lawyer 2026 – Criminal Defense
- Super Lawyers – Southwest
- National College for DUI Defense (NCDD)
When you are looking for the best Phoenix DUI lawyers, these are the independently verified credentials that matter, earned by Founding Attorney Michael Tamou and a full team of attorneys, including former prosecutors.
What Clients Say About Tamou Law
Real Google reviews from clients we have defended across Phoenix and Maricopa County. Every review is from a criminal defense client, never padded with non-legal work.
Frequently Asked Questions
How many jurors are required for a criminal trial in Arizona?
Arizona requires 12 jurors in criminal trials where a sentence of death or 30 or more years in prison is authorized, and eight jurors in all other criminal cases under A.R.S. § 21-102. Alternates are also seated in longer trials to replace jurors who become unable to serve.
Does a jury verdict have to be unanimous in Arizona?
Yes, Arizona requires a unanimous jury verdict in every criminal trial, meaning all jurors must agree on guilty or not guilty before a verdict can be returned. If even one juror disagrees after full deliberation, the court may declare a mistrial rather than accept a split decision.
What happens if a jury cannot reach a verdict in Arizona?
If an Arizona jury cannot reach a unanimous verdict, the judge declares a mistrial and the prosecution can retry the defendant, offer a plea deal, or dismiss the case. A hung jury is not an acquittal, so double jeopardy does not bar a second trial on the same charges.
What are the requirements to serve on a jury in Arizona?
To serve on an Arizona jury you must be a U.S. citizen, at least 18 years old, a resident of the county, and not a convicted felon whose civil rights remain unrestored, under A.R.S. § 21-201. Attorneys then question the panel during voir dire to remove anyone who cannot be fair and impartial.
Can you get a jury trial for a misdemeanor like DUI in Arizona?
Yes, Arizona guarantees a jury trial for felonies and for jury-eligible misdemeanors such as DUI, but petty offenses with minor penalties are tried to a judge alone. Whether a misdemeanor qualifies depends on its common-law history and the severity of its consequences under Arizona’s Derendal test.
What does beyond a reasonable doubt mean for an Arizona jury?
Beyond a reasonable doubt means Arizona jurors must be firmly convinced of the defendant’s guilt before they can convict, the highest standard of proof in American law. The prosecution carries that burden on every element, because A.R.S. § 13-115 presumes the defendant innocent until guilt is proved.
How long does jury deliberation take in an Arizona criminal trial?
Arizona sets no time limit on jury deliberations, which can last anywhere from under an hour to several days depending on the complexity of the case. Jurors must reach their verdict using only the evidence admitted in court and cannot investigate the case on their own.
Is a jury trial better than a bench trial in an Arizona criminal case?
A jury trial is often better for defendants because the State must convince every juror unanimously, while a bench trial places the verdict in a single judge’s hands. The right choice depends on your facts, and Tamou Law Group can evaluate both options for you. Call 623-321-4699, 24/7.
Two Arizona Offices, One Team
We serve all of Maricopa County and the surrounding area, with free, confidential consultations 24/7 by phone and in-person meetings at either office by appointment.
Case Results Disclaimer: The results described on this page are based on specific facts and circumstances and do not guarantee or predict a similar outcome in any future case. Every case is different. Past results do not guarantee future results. No attorney-client relationship is formed by viewing this page or submitting a contact form until a written fee agreement has been signed. Tamou Law Group, PLLC is licensed to practice law in the State of Arizona. This website is for informational purposes only and does not constitute legal advice.
(function() {
function customizeConsultForm() {
var form = document.querySelector('#consult-form');
if (!form) return false;
var fields = form.querySelectorAll('.gfield');
var emailField = null;
var didWork = false;
fields.forEach(function(field) {
var label = field.querySelector('.gfield_label, label');
if (!label) return;
var labelText = (label.textContent || '').trim().toLowerCase();
if (labelText.indexOf('best way to reply') !== -1 || labelText.indexOf('preferred contact') !== -1) {
field.classList.add('tlg-hide-field');
field.querySelectorAll('input').forEach(function(input) {
input.checked = false;
input.removeAttribute('required');
});
didWork = true;
}
if (labelText.indexOf('email') !== -1) {
emailField = field;
field.classList.add('tlg-email-required');
field.querySelectorAll('input[type="email"], input[type="text"]').forEach(function(input) {
input.setAttribute('required', 'required');
input.setAttribute('aria-required', 'true');
});
didWork = true;
}
});
var gform = form.tagName === 'FORM' ? form : (form.querySelector('form') || form.closest('form'));
if (!gform) gform = document.querySelector('#consult-form form, form[id^="gform_"]');
if (gform && !gform.dataset.tlgSourceBound) {
gform.dataset.tlgSourceBound = '1';
var pageUrl = window.location.href;
var pageTitle = document.title || 'Phoenix White Collar Defense Lawyers';
var pagePath = window.location.pathname;
var sourceTag = '[Source: ' + pageTitle.replace(/\s*[,|].*$/, '') + ' | ' + pagePath + ']';
['source_page', 'page_url', 'lander_url'].forEach(function(name) {
var h = document.createElement('input');
h.type = 'hidden';
h.name = name;
h.value = pageUrl;
gform.appendChild(h);
});
var hp = document.createElement('input');
hp.type = 'hidden';
hp.name = 'source_path';
hp.value = pagePath;
gform.appendChild(hp);
function findMessageField() {
var match = null;
form.querySelectorAll('.gfield').forEach(function(field) {
var label = field.querySelector('.gfield_label, label');
if (!label) return;
var t = (label.textContent || '').trim().toLowerCase();
if (t.indexOf('message') !== -1 || t.indexOf('comment') !== -1 || t.indexOf('detail') !== -1 || t.indexOf('describe') !== -1 || t.indexOf('tell us') !== -1 || t.indexOf('your story') !== -1) {
match = field.querySelector('textarea, input[type="text"]');
}
});
if (!match) match = form.querySelector('textarea');
return match;
}
function prependSource() {
var textarea = findMessageField();
if (textarea && textarea.value.indexOf('[Source:') === -1) {
textarea.value = sourceTag + '\n\n' + (textarea.value || '');
}
}
gform.addEventListener('submit', prependSource, true);
var submitBtns = gform.querySelectorAll('input[type="submit"], button[type="submit"], .gform_button');
submitBtns.forEach(function(btn) {
btn.addEventListener('click', function() {
setTimeout(prependSource, 0);
prependSource();
}, true);
});
}
var submitBtn = form.querySelector('input[type="submit"], button[type="submit"]');
if (submitBtn && emailField && !submitBtn.dataset.tlgBound) {
submitBtn.dataset.tlgBound = '1';
submitBtn.addEventListener('click', function(e) {
var emailInput = emailField.querySelector('input[type="email"], input[type="text"]');
if (emailInput && !emailInput.value.trim()) {
e.preventDefault();
emailInput.focus();
emailInput.style.borderColor = '#c62828';
emailInput.style.boxShadow = '0 0 0 3px rgba(198,40,40,.15)';
}
});
}
return didWork;
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', customizeConsultForm);
} else {
customizeConsultForm();
}
var attempts = 0;
var interval = setInterval(function() {
attempts++;
var done = customizeConsultForm();
if (done || attempts > 10) clearInterval(interval);
}, 500);
})();






