ADVERTISEMENT

Murray has 'huge motivation' to still be in Britain's Davis Cup team

Published Sep 12, 2023 03:32 am

At A Glance

  • Andy Murray says he has "huge motivation" to be a member of Great Britain's Davis Cup team despite questioning whether he deserved his place after his early exit at the US Open.

LONDON (AFP) -- Andy Murray says he has "huge motivation" to be a member of Great Britain's Davis Cup team despite questioning whether he deserved his place after his early exit at the US Open.

andy murray.jpg
Great Britain's Andy Murray. (AFP)

The former world number one is in a five-man team for this week's group stage in Manchester, along with Cameron Norrie, Dan Evans, Jack Draper and Neal Skupski.

Speaking after his recent disappointing second-round loss to Grigor Dimitrov at Flushing Meadows, the Scot said other players deserved a place in the team event ahead of him.

But the 36-year-old three-time Grand Slam champion, who has slipped to 41st in the world rankings, cut a more positive figure at a press conference at the AO Arena on Monday.

"At that moment, straight as I came off the court, I wasn't in a great place after losing in a Slam," he said.

"I said (to British team captain Leon Smith), if I'm not needed, I completely get that. But, for whatever reason, he asked me to come and I said I would come.

"I've always loved playing Davis Cup and any event where you're competing for your country. We have a great group of guys, I love being part of this team."

He added: "I do genuinely believe the team can win the event. That's huge motivation to be a part of it. I want to help the team in any way I can, whether that's on the court or off. We'll see what happens."

Britain have been drawn in a strong group with Australia, France and Switzerland and must finish in the top two to book their spot at the finals week in Malaga, southern Spain, in November.

It is eight years since Murray led Britain to the Davis Cup title virtually single-handed.

Britain have a stronger overall team now but that gives Smith selection difficulties and he faced criticism for choosing Murray and Joe Salisbury as his doubles pair when they crashed out at the same stage in Glasgow 12 months ago.

Salisbury won his third consecutive US Open title with American Rajeev Ram on Friday but did not make the squad, while the skipper must decide whether he will throw in 21-year-old Draper, fresh from his run to the fourth round in New York.

"I think we've got our best five here," said Smith. "Obviously we've got strength in depth, especially on the doubles side. In terms of selection for the matches, it's good. You want a strong squad, different options, because it is a long week."

Britain's biggest challenge is likely to come on Wednesday, when they take on last year's runners-up Australia, led by in-form world number 12 Alex de Minaur.

There are other groups based in Bologna, Split and Valencia, where Serbia and Spain will do battle, although a Wimbledon final rematch between Novak Djokovic and Carlos Alcaraz will no longer happen following the Spaniard's withdrawal.

Related Tags

Andy Murray Davis Cup
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.